DocSpace-buildtools/common/services/ASC.Data.Backup/ModelApi/BackupRestore.cs
2020-08-27 17:01:37 +03:00

15 lines
367 B
C#

using System.Collections.Generic;
using ASC.Data.Backup.Contracts;
namespace ASC.Data.Backup.Models
{
public class BackupRestore
{
public string BackupId { get; set; }
public BackupStorageType StorageType { get; set; }
public Dictionary<string, string> StorageParams { get; set; }
public bool Notify { get; set; }
}
}