ISEbd-22_CourseWork_School/School/SchoolContracts/BindingModels/ReportDateRangeBindingModel.cs

18 lines
404 B
C#
Raw Normal View History

2024-05-01 17:54:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModels
{
public class ReportDateRangeBindingModel
{
public string? FileName { get; set; }
public Stream? Stream { get; set; }
public DateOnly DateFrom { get; set; }
public DateOnly DateTo { get; set; }
}
}