13 lines
265 B
C#
13 lines
265 B
C#
using MediatR;
|
|
|
|
namespace cuqmbr.TravelGuide.Application.Regions.Commands.UpdateRegion;
|
|
|
|
public record UpdateRegionCommand : IRequest<RegionDto>
|
|
{
|
|
public Guid Guid { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public Guid CountryGuid { get; set; }
|
|
}
|