DocSpace-buildtools/web/ASC.Web.Api/ApiModels/RequestsDto/SchemaDto.cs

18 lines
608 B
C#
Raw Normal View History

2022-03-01 08:59:06 +00:00
namespace ASC.Web.Api.Models
{
public class SchemaModel
{
public string Id { get; set; }
public string Name { get; set; }
public string UserCaption { get; set; }
public string UsersCaption { get; set; }
public string GroupCaption { get; set; }
public string GroupsCaption { get; set; }
public string UserPostCaption { get; set; }
public string RegDateCaption { get; set; }
public string GroupHeadCaption { get; set; }
public string GuestCaption { get; set; }
public string GuestsCaption { get; set; }
}
}