PIbd-21 Afanasev S.S. LabWork04_Base #4

Closed
Stepan wants to merge 6 commits from Lab4 into Lab3
Showing only changes of commit edcc68aa9d - Show all commits

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantContracts.BindingModels
{
internal class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}