using MediatR; namespace AutobusApi.Application.Employees.Commands.DeleteEmployee; public record DeleteEmployeeCommand : IRequest { public int Id { get; set; } }