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

15 lines
328 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
2022-01-17 11:15:46 +00:00
namespace ASC.Data.Backup.ApiModels
2020-06-23 10:48:36 +00:00
{
2022-01-17 11:15:46 +00:00
public class BackupDto
2020-06-23 10:48:36 +00:00
{
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
}
}