auto.bus_api/SharedModels/QueryParameters/Objects/ReviewParameters.cs
cuqmbr a75ea56f69 nonatomic commit. check description for the list of changes
feat: add UserManagementService

feat: add CopmanyDriver relation and DriverManagementService

chore: pupulate database seeding class

fix: add review filtering by CompanyId
2023-05-02 14:57:46 +03:00

18 lines
496 B
C#

namespace SharedModels.QueryParameters.Objects;
public class ReviewParameters : ParametersBase
{
public const string DefaultFields = "id,rating,comment,userId,user,vehicleEnrollmentId,vehicleEnrollment";
public ReviewParameters()
{
Fields = DefaultFields;
}
public int? FromRating { get; set; }
public int? ToRating { get; set; }
public string? Comment { get; set; }
public string? UserId { get; set; }
public int? CompanyId { get; set; }
}