aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Todo/TodoCollection.cs
blob: 551e4880a6c2f4243437677d4da44c7cd2486a72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace IOL.GreatOffice.Api.Models.Database;

public class TodoCollection : BaseWithOwner
{
    public string Name { get; set; }
    public string Description { get; set; }
    public TodoVisibility Visibility { get; set; }
    public Guid? ProjectId { get; set; }
    public Project Project { get; set; }
    public ICollection<TodoCollectionAccessControl> AccessControls { get; set; }
}