using MediatR; namespace AutobusApi.Application.Countries.Commands.UpdateCountry; public record UpdateCountryCommand : IRequest { public int Id { get; set; } public string Name { get; set; } = null!; }