autobus-api_old/AutobusApi.Application/Countries/Commands/DeleteCountry/DeleteCountryCommand.cs

9 lines
166 B
C#

using MediatR;
namespace AutobusApi.Application.Countries.Commands.DeleteCountry;
public record DeleteCountryCommand : IRequest
{
public int Id { get; set; }
}