using MediatR; namespace AutobusApi.Application.Regions.Commands.UpdateRegion; public record UpdateRegionCommand : IRequest { public int Id { get; set; } public string Name { get; set; } = null!; public int CountryId { get; set; } }