18 lines
455 B
C#
Raw Permalink Normal View History

2023-05-20 06:49:33 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.BindingModels
{
public class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public int ClientId { get; set; }
public List<int>? Ids { get; set; }
2023-05-20 06:49:33 +04:00
}
}