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.DataLayer/Entities/Card.cs
2023-07-23 17:46:06 +03:00

17 lines
526 B
C#

namespace NG_2023_Kanban.DataLayer.Entities
{
public class Card : BaseEntity
{
public string Name { get; set; }
public string Description { get; set; }
public int AssignedId { get; set; }
public int ColumnId { get; set; }
public int SenderId { get; set; }
public User Assigned { get; set; }
public Column Column { get; set; }
public User Sender { get; set; }
public ICollection<Comment> Comments { get; set; } = new List<Comment>();
}
}