11 lines
221 B
C#
11 lines
221 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Regions.Commands.CreateRegion;
|
|
|
|
public record CreateRegionCommand : IRequest<int>
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
|
|
public int CountryId { get; set; }
|
|
}
|