12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
- // If you have enabled NRTs for your project, then un-comment the following line:
- // #nullable disable
- namespace Task1
- {
- public partial class StatusTask
- {
- public StatusTask()
- {
- Task = new HashSet<Task>();
- }
- public int Id { get; set; }
- public string Name { get; set; }
- public virtual ICollection<Task> Task { get; set; }
- }
- }
|