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

16 lines
323 B
C#

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