16 lines
364 B
C#
16 lines
364 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BarContracts.BindingModels
|
|||
|
{
|
|||
|
public class ReportBindingModel
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
public DateTime? DateFrom { get; set; }
|
|||
|
public DateTime? DateTo { get; set; }
|
|||
|
}
|
|||
|
}
|