20 lines
525 B
C#
20 lines
525 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 int UserId { get; set; }
|
|
public List<int>? LunchId { get; set; }
|
|
public List<int>? ProductId { get; set; }
|
|
}
|
|
}
|