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