using MediatR; namespace AutobusApi.Application.Cities.Commands.UpdateCity; public record UpdateCityCommand : IRequest { public int Id { get; set; } public string Name { get; set; } = null!; public int RegionId { get; set; } }