DocSpace-client/common/services/ASC.Data.Backup/ApiModels/BackupDto.cs

15 lines
328 B
C#

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