blob: ae9d2b19006f15bc865305aa5013a8b3c4b6a62c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace I2R.Storage.Api.Database.Models;
public class Permission : Base
{
public Permission() { }
public Permission(Guid createdBy) : base(createdBy) { }
public Guid ContentId { get; set; }
public bool IsFile { get; set; }
public bool CanRead { get; set; }
public bool CanWrite { get; set; }
public Guid GroupId { get; set; }
public PermissionGroup Group { get; set; }
}
|