From f2230ee0c5a18b03e63065fedf7a393d066988a1 Mon Sep 17 00:00:00 2001 From: ekallin Date: Sat, 23 Mar 2024 17:37:52 +0400 Subject: [PATCH] =?UTF-8?q?=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B0=204?= =?UTF-8?q?=20=D0=BB=D0=B0=D0=B1=D0=B0,=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=20ReportBin?= =?UTF-8?q?dingModel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBarContracts/BindingModel/ReportBindingModel.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 SushiBarContracts/BindingModel/ReportBindingModel.cs diff --git a/SushiBarContracts/BindingModel/ReportBindingModel.cs b/SushiBarContracts/BindingModel/ReportBindingModel.cs new file mode 100644 index 0000000..7c07e5f --- /dev/null +++ b/SushiBarContracts/BindingModel/ReportBindingModel.cs @@ -0,0 +1,10 @@ +namespace SushiBarContracts.BindingModel +{ + public class ReportBindingModel + { + public string FileName { get; set; } = string.Empty; + public DateTime? DateFrom { get; set; } + public DateTime? DateTo { get; set; } + + } +}