using MediatR; namespace AutobusApi.Application.Employees.Queries.GetEmployee; public record GetEmployeeQuery : IRequest { public int Id { get; set; } }