DocSpace-client/web/ASC.Web.Api/Models/WebItemSecurityModel.cs
2020-08-27 17:01:37 +03:00

16 lines
394 B
C#

using System;
using System.Collections.Generic;
using ASC.Api.Collections;
namespace ASC.Web.Api.Models
{
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; }
}
}