1 /*
2 * Copyright (C) 2023 B3Partners B.V.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6 package org.tailormap.api.geotools.wfs;
7
8 import java.util.List;
9
10 public record SimpleWFSLayerDescription(String wfsUrl, List<String> typeNames) {
11
12 public String getFirstTypeName() {
13 return typeNames.getFirst();
14 }
15 }