DocSpace-client/common/services/ASC.Data.Backup/ModelApi/Backup.cs
2020-08-27 17:01:37 +03:00

15 lines
320 B
C#

using System.Collections.Generic;
using ASC.Data.Backup.Contracts;
namespace ASC.Data.Backup.Models
{
public class Backup
{
public BackupStorageType StorageType { get; set; }
public bool BackupMail { get; set; }
public Dictionary<string, string> StorageParams { get; set; }
}
}