DocSpace-client/common/services/ASC.Data.Backup/ModelApi/Backup.cs

16 lines
323 B
C#
Raw Normal View History

2020-06-23 10:48:36 +00:00

using System.Collections.Generic;
2020-08-27 14:01:37 +00:00
using ASC.Api.Collections;
2020-06-23 10:48:36 +00:00
namespace ASC.Data.Backup.Models
{
public class Backup
{
public string StorageType { get; set; }
2020-06-23 10:48:36 +00:00
public bool BackupMail { get; set; }
public IEnumerable<ItemKeyValuePair<object, object>> StorageParams { get; set; }
2020-06-23 10:48:36 +00:00
}
}