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

14 lines
272 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; }
}
}