using MediatR; namespace AutobusApi.Application.Buses.Commands.DeleteBus; public record DeleteBusCommand : IRequest { public int Id { get; set; } }