using MediatR; namespace AutobusApi.Application.Countries.Commands.DeleteCountry; public record DeleteCountryCommand : IRequest { public int Id { get; set; } }