Add project files.
This commit is contained in:
13
DTOs/OrderFilters.cs
Normal file
13
DTOs/OrderFilters.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user