DocSpace-client/web/ASC.Web.Api/ApiModels/RequestsDto/WebItemSecurityDto.cs

9 lines
283 B
C#

namespace ASC.Web.Api.ApiModel.RequestsDto;
public class WebItemSecurityDto
{
public string Id { get; set; }
public bool Enabled { get; set; }
public IEnumerable<Guid> Subjects { get; set; }
public IEnumerable<ItemKeyValuePair<string, bool>> Items { get; set; }
}