This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Kanban/NG_2023_Kanban.BusinessLayer/Models/UserModel.cs
2023-05-18 19:42:14 +03:00

16 lines
590 B
C#

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 bool IsAdmin { get; set; } = false;
public virtual ICollection<BoardModel>? Boards { get; set; } = new HashSet<BoardModel>();
public virtual ICollection<CardModel>? Cards { get; set; } = new HashSet<CardModel>();
public virtual ICollection<CommentModel>? Comments { get; set; } = new HashSet<CommentModel>();
}
}