// ----------------------------------------------------------------------- // // TODO: Update copyright text. // // ----------------------------------------------------------------------- namespace OsmReader.OsmData.Elements { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; /// /// TODO: Update summary. /// public class OsmMember { [XmlAttribute(AttributeName = "type")] public string type { get; set; } [XmlAttribute(AttributeName = "ref")] public long reference { get; set; } [XmlAttribute(AttributeName = "role")] public string role { get; set; } } }