DocSpace-buildtools/common/services/ASC.Data.Backup/ApiModels/BackupRestoreDto.cs

10 lines
282 B
C#
Raw Normal View History

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