autobus-api_old/AutobusApi.Application/VehicleEnrollments/Queries/GetVehicleEnrollment/GetVehicleEnrollmentQuery.cs

9 lines
208 B
C#

using MediatR;
namespace AutobusApi.Application.VehicleEnrollments.Queries.GetVehicleEnrollment;
public record GetVehicleEnrollmentQuery : IRequest<VehicleEnrollmentDto>
{
public int Id { get; set; }
}