9 lines
169 B
C#
9 lines
169 B
C#
using MediatR;
|
|
|
|
namespace AutobusApi.Application.Countries.Queries.GetCountry;
|
|
|
|
public record GetCountryQuery : IRequest<CountryDto>
|
|
{
|
|
public int Id { get; set; }
|
|
}
|