blob: 1676c06fdfadbb1514c703ecba125f345fe338a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace IOL.GreatOffice.Api.Data.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; }
}
|