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

public class TodoCollectionAccessControl : Base
{
    public TodoCollection Collection { get; set; }
    public User User { get; set; }
    public Guid? UserId { get; set; }
    public bool CanBrowse { get; set; }
    public bool CanSubmit { get; set; }
    public bool CanComment { get; set; }
    public bool CanEdit { get; set; }
}