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

13 lines
360 B
C#
Raw Normal View History

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