DocSpace-buildtools/web/ASC.Web.Api/Models/WebItemSecurityModel.cs

11 lines
312 B
C#
Raw Normal View History

2022-01-31 15:13:08 +00:00
namespace ASC.Web.Api.Models
2019-08-12 10:53:12 +00:00
{
public class WebItemSecurityModel
{
public string Id { get; set; }
public bool Enabled { get; set; }
public IEnumerable<Guid> Subjects { get; set; }
public IEnumerable<ItemKeyValuePair<string, bool>> Items { get; set; }
}
}