9 lines
172 B
C#
9 lines
172 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Employees.Queries.GetEmployee;
|
|
|
|
public record GetEmployeeQuery : IRequest<EmployeeDto>
|
|
{
|
|
public int Id { get; set; }
|
|
}
|