9 lines
166 B
C#
9 lines
166 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Countries.Commands.DeleteCountry;
|
|
|
|
public record DeleteCountryCommand : IRequest
|
|
{
|
|
public int Id { get; set; }
|
|
}
|