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; } }