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

23 lines
585 B
C#

using System.Collections.Generic;
using ASC.Api.Collections;
namespace ASC.Data.Backup.ModelApi
{
public class BackupSchedule
{
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; }
}
}