DocSpace-buildtools/web/ASC.Web.Api/Models/SettingsModel.cs

22 lines
432 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System;
namespace ASC.Web.Api.Models
{
public class SettingsModel
{
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
2019-08-15 12:04:42 +00:00
public int VersionId { get; set; }
public Guid OwnerId { get; set; }
2019-08-12 10:53:12 +00:00
}
}