//----------------------------------------------------------------------------- // // Company copyright tag. // // stubbfel // 19.08.2013 //----------------------------------------------------------------------------- namespace CampusAppWPortalLib8.Model.GeoDb { using System.Xml.Serialization; /// Place service. /// Stubbfel, 19.08.2013. public class PlaceService { /// Gets or sets the name of the service. /// The name of the service. [XmlAttribute("placeServiceName")] public string ServiceName { get; set; } /// Gets or sets the SAP of an service. /// The sap. [XmlElement("sap")] public string SAP { get; set; } /// Gets or sets the request for a place. /// The request. [XmlElement("request")] public string Request { get; set; } } }