summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Database/Todo.cs
blob: 5fe3c9ae2e852805c502a3d85433f25309ac2e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace IOL.GreatOffice.Api.Data.Database;

public class Todo : BaseWithOwner
{
	public int PublicId { get; set; }
	public TodoStatus Status { get; set; }
	public TodoProject Project { get; set; }
	public Guid? AssignedUserId { get; set; }
	public string Title { get; set; }
	public string Description { get; set; }
	public ICollection<TodoLabel> Labels { get; set; }
	public ICollection<TodoComment> Comments { get; set; }
}