using MediatR; namespace AutobusApi.Application.Countries.Commands.CreateCountry; public record CreateCountryCommand : IRequest { public string Name { get; set; } = null!; }