DocSpace-buildtools/web/ASC.Web.Api/ApiModels/RequestsDto/WebItemSecurityRequestsDto.cs
2022-03-15 13:00:41 +03:00

9 lines
291 B
C#

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