12 lines
305 B
C#
12 lines
305 B
C#
|
namespace Graph;
|
|||
|
|
|||
|
public class Way(Dictionary<string, string> tags)
|
|||
|
{
|
|||
|
public readonly Dictionary<string, string> Tags = tags;
|
|||
|
|
|||
|
public override string ToString()
|
|||
|
{
|
|||
|
return $"Way\n" +
|
|||
|
$"Tags:\t{string.Join("\n\t", Tags.Select(t => $"{t.Key,10}={t.Value,30}"))}";
|
|||
|
}
|
|||
|
}
|