Add project files.

This commit is contained in:
KhasanovAM
2026-01-18 00:30:29 +04:00
parent 9c5a7ce993
commit 61a598aceb
27 changed files with 1974 additions and 0 deletions

13
DTOs/OrderFilters.cs Normal file
View 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;
}
}