DocSpace-buildtools/common/services/ASC.Data.Backup/ModelApi/BackupRestore.cs
2020-06-23 13:48:36 +03:00

18 lines
429 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
}
}