15 lines
430 B
C#
Raw Normal View History

2023-04-10 23:07:27 +04:00
using SoftwareInstallationDataModels.Enums;
namespace SofrwareInstallationContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
2023-03-26 22:01:47 +04:00
public int? ClientId { get; set; }
2023-03-25 18:15:35 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2023-04-10 23:07:27 +04:00
public int? ImplementerId { get; set; }
public List<OrderStatus>? Statuses { get; set; }
}
}