11 lines
323 B
C#
11 lines
323 B
C#
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;
|
|
}
|
|
} |