DocSpace-client/web/ASC.Web.Api/ApiModels/RequestsDto/EncryptionSettingsDto.cs

12 lines
269 B
C#

namespace ASC.Web.Api.ApiModel.RequestsDto;
public class EncryptionSettingsDto
{
public string Password { get; set; }
public EncryprtionStatus Status { get; set; }
public bool NotifyUsers { get; set; }
public string ServerRootPath { get; set; }
}