DocSpace-buildtools/common/services/ASC.Data.Backup/ApiModels/BackupScheduleDto.cs

23 lines
589 B
C#
Raw Normal View History

2020-11-06 09:03:49 +00:00
using System.Collections.Generic;
using ASC.Api.Collections;
2022-01-17 11:15:46 +00:00
namespace ASC.Data.Backup.ApiModels
{
2022-01-17 11:15:46 +00:00
public class BackupScheduleDto
{
public string StorageType { get; set; }
public IEnumerable<ItemKeyValuePair<object, object>> StorageParams { get; set; }
public string BackupsStored { get; set; }
public Cron CronParams { get; set; }
public bool BackupMail { get; set; }
}
public class Cron
{
public string Period { get; set; }
public string Hour { get; set; }
public string Day { get; set; }
}
}