20 lines
495 B
C#
20 lines
495 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AcademicProgressBusinessLogic.BindingModels
|
|||
|
{
|
|||
|
// <summary>
|
|||
|
/// Информация по выгрузке отчета
|
|||
|
/// </summary>
|
|||
|
public class ReportBindingModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Путь до папки, куда выгружать отчет
|
|||
|
/// </summary>
|
|||
|
public string FolderName { get; set; }
|
|||
|
}
|
|||
|
}
|