9 lines
185 B
C#
9 lines
185 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Countries.Commands.CreateCountry;
|
|
|
|
public record CreateCountryCommand : IRequest<int>
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
}
|