PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/BindingModels/ReportBindingModel.cs

21 lines
563 B
C#
Raw Normal View History

2023-05-20 12:11:48 +04:00
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
{
2023-06-19 09:12:18 +04:00
public string? FileName { get; set; }
2023-06-22 02:38:03 +04:00
public string? FileType { get; set; }
2023-05-20 12:11:48 +04:00
public DateTime? DateAfter { get; set; }
public DateTime? DateBefore { get; set; }
2023-06-14 22:47:30 +04:00
public int UserId { get; set; }
2023-06-22 02:38:03 +04:00
public int[]? LunchId { get; set; }
public int[]? ProductId { get; set; }
2023-05-20 12:11:48 +04:00
}
}