33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="PlaceService.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>19.08.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace CampusAppWPortalLib8.Model.GeoDb
|
|
{
|
|
using System.Xml.Serialization;
|
|
|
|
/// <summary>Place service.</summary>
|
|
/// <remarks>Stubbfel, 19.08.2013.</remarks>
|
|
public class PlaceService
|
|
{
|
|
/// <summary>Gets or sets the name of the service.</summary>
|
|
/// <value>The name of the service.</value>
|
|
[XmlAttribute("placeServiceName")]
|
|
public string ServiceName { get; set; }
|
|
|
|
/// <summary>Gets or sets the SAP of an service.</summary>
|
|
/// <value>The sap.</value>
|
|
[XmlElement("sap")]
|
|
public string SAP { get; set; }
|
|
|
|
/// <summary>Gets or sets the request for a place.</summary>
|
|
/// <value>The request.</value>
|
|
[XmlElement("request")]
|
|
public string Request { get; set; }
|
|
}
|
|
}
|