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

16 lines
394 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System;
using System.Collections.Generic;
2020-08-27 14:01:37 +00:00
2019-08-12 10:53:12 +00:00
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; }
}
}