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 Labels { get; set; } public ICollection Comments { get; set; } }