namespace NG_2023_Kanban.BusinessLayer.Models
{
public class UserModel : BaseModel
public string FullName { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public virtual ICollection<BoardModel>? Boards { get; set; } = new HashSet<BoardModel>();
public virtual ICollection<CardModel>? CardsAssigned { get; set; } = new HashSet<CardModel>();
public virtual ICollection<CardModel>? CardsSent { get; set; } = new HashSet<CardModel>();
public virtual ICollection<CommentModel>? Comments { get; set; } = new HashSet<CommentModel>();
public virtual ICollection<RoleModel>? Roles { get; set; } = new HashSet<RoleModel>();
}