| | 1 | | using System.Collections.Generic; |
| | 2 | |
|
| | 3 | | namespace Itinero.IO.Osm.Tiles.Parsers.Semantics; |
| | 4 | |
|
| | 5 | | /// <summary> |
| | 6 | | /// Represents mapping configuration for a single tag. |
| | 7 | | /// </summary> |
| | 8 | | public class TagMapperConfig |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Gets or sets the osm key. |
| | 12 | | /// </summary> |
| 0 | 13 | | public string OsmKey { get; set; } |
| | 14 | |
|
| | 15 | | /// <summary> |
| | 16 | | /// Gets or sets the predicate. |
| | 17 | | /// </summary> |
| 0 | 18 | | public string Predicate { get; set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Gets or sets the reverse mapping. |
| | 22 | | /// </summary> |
| 0 | 23 | | public Dictionary<string, string> ReverseMapping { get; set; } |
| | 24 | | } |