DocSpace-client/common/services/ASC.Data.Backup/ModelApi/BackupRestore.cs
2020-11-06 12:03:49 +03:00

15 lines
369 B
C#

using System.Collections.Generic;
using ASC.Api.Collections;
namespace ASC.Data.Backup.Models
{
public class BackupRestore
{
public string BackupId { get; set; }
public object StorageType { get; set; }
public IEnumerable<ItemKeyValuePair<object, object>> StorageParams { get; set; }
public bool Notify { get; set; }
}
}