You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Pattern.cs 598B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Diligent.WebAPI.Data.Entities
  8. {
  9. public class Pattern
  10. {
  11. public int Id { get; set; }
  12. public string Title { get; set; }
  13. public DateTime CreatedAt { get; set; } = DateTime.Now;
  14. [ForeignKey(nameof(SelectionLevel))]
  15. public int SelectionLevelId { get; set; }
  16. public SelectionLevel SelectionLevel { get; set; }
  17. public string Message { get; set; }
  18. }
  19. }