StatusTask.cs 547 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
  4. // If you have enabled NRTs for your project, then un-comment the following line:
  5. // #nullable disable
  6. namespace Task1
  7. {
  8. public partial class StatusTask
  9. {
  10. public StatusTask()
  11. {
  12. Task = new HashSet<Task>();
  13. }
  14. public int Id { get; set; }
  15. public string Name { get; set; }
  16. public virtual ICollection<Task> Task { get; set; }
  17. }
  18. }