//----------------------------------------------------------------------- // // Company copyright tag. // // stubbfel // 08.08.2013 //---------------------------------------------------------------------- namespace CampusAppWPortalLib8.Model.GeoDb { using System.Collections.ObjectModel; using System.Xml.Serialization; /// /// Model for a place of the SPSService /// public class PlaceModel { /// /// Gets or sets the placeId /// [XmlAttribute("id")] public string PlaceId { get; set; } /// /// Gets or sets the id of the "parent" of a place /// [XmlAttribute("parentId")] public string ParentId { get; set; } /// /// Gets or sets the ReferencePoint of a place /// [XmlAttribute("refpoint")] public string RefPoint { get; set; } /// Gets or sets the information. /// The information. [XmlElement("placeInformation")] public ObservableCollection Informations { get; set; } /// Gets or sets the services. /// The services. [XmlElement("placeService")] public ObservableCollection Services { get; set; } } }