20 lines
443 B
C#
20 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AircraftPlantContracts.BindingModels
|
|
{
|
|
/// <summary>
|
|
/// Модель привязки для создания бэкапа
|
|
/// </summary>
|
|
public class BackUpSaveBindingModel
|
|
{
|
|
/// <summary>
|
|
/// Путь и имя файла
|
|
/// </summary>
|
|
public string FolderName { get; set; } = string.Empty;
|
|
}
|
|
}
|