13 lines
407 B
C#
13 lines
407 B
C#
namespace LogisticsApp.Server.DTOs
|
|
{
|
|
public class OrderFilters
|
|
{
|
|
public string? ClientName { get; set; }
|
|
public decimal? MinCost { get; set; }
|
|
public decimal? MaxCost { get; set; }
|
|
public DateTime? OrderDate { get; set; }
|
|
public string? Status { get; set; }
|
|
public int Page { get; set; } = 1;
|
|
public int PageSize { get; set; } = 50;
|
|
}
|
|
} |