PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/BindingModels/ReportBindingModel.cs
2023-05-20 12:11:48 +04:00

19 lines
488 B
C#

using CanteenContracts.View;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.BindingModels
{
public class ReportBindingModel
{
public string FileName { get; set; }
public DateTime? DateAfter { get; set; }
public DateTime? DateBefore { get; set; }
public List<LunchViewModel>? lunches { get; set; }
public int VisitorId { get; set; }
}
}