Илья Федотов 6048105937 Enter fix
2024-05-05 18:00:10 +04:00

17 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerContracts.SearchModels
{
public class OrderSearchModel
{
public int? ID { get; set; }
public DateTime? DateFrom { get; set; }
public int? ClientID { get; set; }
public DateTime? DateTo { get; set; }
}
}