DocSpace-client/common/services/ASC.Data.Backup/ApiModels/BackupDto.cs

9 lines
238 B
C#
Raw Normal View History

2022-01-19 16:25:10 +00:00
namespace ASC.Data.Backup.ApiModels;
2020-08-27 14:01:37 +00:00
2022-01-19 16:25:10 +00:00
public class BackupDto
2020-06-23 10:48:36 +00:00
{
2022-01-19 16:25:10 +00:00
public string StorageType { get; set; }
public bool BackupMail { get; set; }
public IEnumerable<ItemKeyValuePair<object, object>> StorageParams { get; set; }
2020-06-23 10:48:36 +00:00
}