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

17 lines
570 B
C#
Raw Normal View History

2022-03-01 10:58:02 +00:00
namespace ASC.Web.Api.ApiModel.RequestsDto;
2022-03-15 10:00:41 +00:00
public class SchemaRequestsDto
2022-03-01 08:59:06 +00:00
{
2022-03-01 10:58:02 +00:00
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; }
2022-03-01 08:59:06 +00:00
}