blob: 2d7f1092621e0893062c8ad1001e735ed2f2b2d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace IOL.GreatOffice.Api.Data.Database;
public class Todo : BaseWithOwner
{
public string PublicId { get; set; }
public Guid? AssignedToId { get; set; }
public Guid? ClosedById { get; set; }
public Guid CollectionId { get; set; }
public DateTime? ClosedAt { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public ICollection<TodoLabel> Labels { get; set; }
public ICollection<TodoComment> Comments { get; set; }
public User AssignedTo { get; set; }
public User ClosedBy { get; set; }
public TodoCollection Collection { get; set; }
}
|