17 lines
387 B
C#
Raw Normal View History

2024-02-12 12:46:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TypographyContracts.SearchModels
2024-02-12 12:46:44 +04:00
{
public class OrderSearchModel
{
public int? Id { get; set; }
2024-03-25 01:48:14 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public int? ClientId { get; set; }
2024-02-12 12:46:44 +04:00
}
}