namespace NG_2023_Kanban.DataLayer.Entities { public class User : BaseEntity { public string FullName { get; set; } public string Username { get; set; } public string Password { get; set; } public ICollection Boards { get; set; } = new List(); public ICollection CardsAssigned { get; set; } = new List(); public ICollection Comments { get; set; } = new List(); public ICollection CardsSent { get; set; } = new List(); public ICollection Roles { get; set; } = new List(); } }