DepartmentProject/DepartmentPortal/Security/SecurityContract/BindingModels/BackupBindingModel.cs

28 lines
760 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SecurityContract.BindingModels
{
/// <summary>
/// Информация по выгрузки/загрузки данных
/// </summary>
public class BackupBindingModel
{
/// <summary>
/// Путь до папки, куда выгружать бекап
/// </summary>
public string FolderName { get; set; }
/// <summary>
/// Выгрузка всех данных, либо только общедоступных
/// </summary>
public bool FullData { get; set; }
/// <summary>
/// Создать архив с выгрузкой
/// </summary>
public bool CreateArchive { get; set; }
/// <summary>
/// Имя файла для архива
/// </summary>
public string ArchiveFileName { get; set; }
}
}