From edcc68aa9d3437d2ec8599cdb9760a8b600eaf3e Mon Sep 17 00:00:00 2001 From: "[USERNAME]" Date: Wed, 3 Apr 2024 20:58:35 +0400 Subject: [PATCH] start Lab4 --- .../BindingModels/ReportBindingModel.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MotorPlant/MotorPlantContracts/BindingModels/ReportBindingModel.cs diff --git a/MotorPlant/MotorPlantContracts/BindingModels/ReportBindingModel.cs b/MotorPlant/MotorPlantContracts/BindingModels/ReportBindingModel.cs new file mode 100644 index 0000000..23c5d65 --- /dev/null +++ b/MotorPlant/MotorPlantContracts/BindingModels/ReportBindingModel.cs @@ -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; } + } +}