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

16 lines
413 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-06-23 10:48:36 +00:00
using ASC.Api.Collections;
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 IEnumerable<ItemKeyValuePair<object, object>> StorageParams { get; set; }
2020-06-23 10:48:36 +00:00
public bool Notify { get; set; }
}
}