Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/Locations/Requests/AddCountryRequest.cs
2024-08-19 22:25:08 +03:00

5 lines
153 B
C#

namespace ApplicationLayer.Services.Locations.Requests
{
public record AddCountryRequest(string CountryName, bool IsSchengen, string[] Cities);
}