12 lines
305 B
C#
12 lines
305 B
C#
namespace NG_2023_Kanban.DataLayer.Entities
|
|
{
|
|
public class Comment : BaseEntity
|
|
{
|
|
public string Text { get; set; }
|
|
public int SenderId { get; set; }
|
|
public int CardId { get; set; }
|
|
|
|
public User Sender { get; set; }
|
|
public Card Card { get; set; }
|
|
}
|
|
}
|