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

17 lines
570 B
C#

namespace ASC.Web.Api.ApiModel.RequestsDto;
public class SchemaRequestsDto
{
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; }
}