Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/Locations/Requests/UpdateCountryRequest.cs
2024-08-20 21:34:56 +03:00

5 lines
165 B
C#

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