ПИбд-23 Старостин Иван Лабораторная работа №4 #6

Closed
Ivan_Starostin wants to merge 17 commits from lab4 into lab3
Showing only changes of commit d69cbadcc5 - 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 ShipyardContracts.BindingModels
{
public class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}