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

16 lines
324 B
C#
Raw Normal View History

2020-09-02 10:54:50 +00:00
using ASC.Data.Storage.Encryption;
namespace ASC.Web.Api.Models
{
public class EncryptionSettingsModel
{
public string Password { get; set; }
public EncryprtionStatus Status { get; set; }
public bool NotifyUsers { get; set; }
2020-09-08 08:26:05 +00:00
public string ServerRootPath { get; set; }
2020-09-02 10:54:50 +00:00
}
}