CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BindingModels/ReportBindingModel.cs

17 lines
417 B
C#
Raw Permalink Normal View History

2023-04-09 16:55:38 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.BindingModels
{
public class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
2023-05-18 22:18:40 +04:00
public List<int>? Ids { get; set; }
2023-04-09 16:55:38 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}