using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; // 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 User { public User() { TaskUserAcceptedTask = new HashSet(); TaskUserCreatedTask = new HashSet(); } public int UserId { get; set; } public string Name { get; set; } public string Surname { get; set; } public string Patronimyc { get; set; } public string Login { get; set; } public string Password { get; set; } public string Phone { get; set; } public virtual ICollection TaskUserAcceptedTask { get; set; } public virtual ICollection TaskUserCreatedTask { get; set; } public static User AUser { get; set; } } }