5 lines
153 B
C#
5 lines
153 B
C#
namespace ApplicationLayer.Services.Locations.Requests
|
|
{
|
|
public record AddCountryRequest(string CountryName, bool IsSchengen, string[] Cities);
|
|
}
|