Add project files.
This commit is contained in:
11
DTOs/VehicleFilters.cs
Normal file
11
DTOs/VehicleFilters.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace LogisticsApp.Server.DTOs
|
||||
{
|
||||
public class VehicleFilters
|
||||
{
|
||||
public string? DriverName { get; set; }
|
||||
public string? VehicleType { get; set; }
|
||||
public string? LicensePlate { get; set; }
|
||||
public int Page { get; set; } = 1;
|
||||
public int PageSize { get; set; } = 50;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user