DocSpace-client/common/ASC.Core.Common/Tenants/TenantControlPanelSettings.cs

20 lines
458 B
C#
Raw Normal View History

2022-03-15 16:59:24 +00:00
namespace ASC.Core.Tenants;
2022-02-15 11:52:43 +00:00
[Serializable]
[DataContract]
public class TenantControlPanelSettings : ISettings
2020-09-17 13:56:12 +00:00
{
2022-02-15 11:52:43 +00:00
[DataMember(Name = "LimitedAccess")]
public bool LimitedAccess { get; set; }
2020-09-17 13:56:12 +00:00
2022-02-15 11:52:43 +00:00
public Guid ID => new Guid("{880585C4-52CD-4AE2-8DA4-3B8E2772753B}");
2020-09-17 13:56:12 +00:00
2022-02-15 11:52:43 +00:00
public ISettings GetDefault(IServiceProvider serviceProvider)
{
return new TenantControlPanelSettings
2020-09-17 13:56:12 +00:00
{
2022-02-15 11:52:43 +00:00
LimitedAccess = false
};
2020-09-17 13:56:12 +00:00
}
2022-02-15 11:52:43 +00:00
}