auto.bus_api/SharedModels/QueryParameters/Objects/VehicleEnrollmentWithDetailsParameters.cs
cuqmbr 51f77aa290 fix: expand data fields returned in GET methods
This fixes possible lack of data on client applications. Prevents multiple requests from being sent
2023-04-25 20:28:23 +03:00

24 lines
964 B
C#

namespace SharedModels.QueryParameters.Objects;
public class VehicleEnrollmentWithDetailsParameters : ParametersBase
{
public const string DefaultFields = "id,vehicleId,vehicle,routeId,route,departureDateTimeUtc," +
"tickets,reviews,delayTimeSpan,isCancelled," +
"cancellationComment,routeAddressDetails";
public VehicleEnrollmentWithDetailsParameters()
{
Fields = DefaultFields;
}
public int? VehicleId { get; set; }
public int? RouteId { get; set; }
public DateTime? FromDepartureDateTime { get; set; }
public DateTime? ToDepartureDateTime { get; set; }
public bool? IsDelayed { get; set; }
public bool? IsCanceled {get; set; }
public TimeSpan? FromTotalTripDuration { get; set; }
public TimeSpan? ToTotalTripDuration { get; set; }
public double? FromCost { get; set; }
public double? ToCost { get; set; }
}