DocSpace-buildtools/web/ASC.Web.Api/Models/EncryptionSettingsModel.cs
2020-12-28 16:22:08 +03:00

16 lines
317 B
C#

using ASC.Core.Encryption;
namespace ASC.Web.Api.Models
{
public class EncryptionSettingsModel
{
public string Password { get; set; }
public EncryprtionStatus Status { get; set; }
public bool NotifyUsers { get; set; }
public string ServerRootPath { get; set; }
}
}