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

13 lines
368 B
C#

namespace ASC.Web.Api.ApiModel.RequestsDto;
public class SettingsRequestsDto
{
public Guid DefaultProductID { get; set; }
public string Lng { get; set; }
public string TimeZoneID { get; set; }
public string Theme { get; set; }
public bool Show { get; set; } //tips
public int VersionId { get; set; }
public Guid OwnerId { get; set; }
}