DocSpace-buildtools/common/services/ASC.Data.Backup/ApiModels/BackupRestoreDto.cs

15 lines
375 B
C#

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