blob: 964f8319e6e28e4ffd727f3b23a9f5b9565014d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
namespace IOL.GreatOffice.Api.Data.Database;
public class TodoProjectAccessControl
{
public TodoProject Project { get; set; }
public Guid? UserId { get; set; }
public bool Browse { get; set; }
public bool Submit { get; set; }
public bool Comment { get; set; }
public bool Edit { get; set; }
}
|