11 lines
213 B
C#
11 lines
213 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Countries.Commands.UpdateCountry;
|
|
|
|
public record UpdateCountryCommand : IRequest
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
}
|