DocSpace-buildtools/common/services/ASC.Data.Backup/ModelApi/BackupRestore.cs

15 lines
367 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-06-23 10:48:36 +00:00
using ASC.Data.Backup.Contracts;
namespace ASC.Data.Backup.Models
{
public class BackupRestore
{
2020-08-27 14:01:37 +00:00
public string BackupId { get; set; }
2020-06-23 10:48:36 +00:00
public BackupStorageType StorageType { get; set; }
public Dictionary<string, string> StorageParams { get; set; }
public bool Notify { get; set; }
}
}