27 lines
966 B
C#
27 lines
966 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="PlaceInformation.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>Information about the place.</summary>
|
|
/// <remarks>Stubbfel, 19.08.2013.</remarks>
|
|
public class PlaceInformation
|
|
{
|
|
/// <summary>Gets or sets the name of the information.</summary>
|
|
/// <value>The name of the information.</value>
|
|
[XmlElement("placeInformationName")]
|
|
public string InformationName { get; set; }
|
|
|
|
/// <summary>Gets or sets the information value.</summary>
|
|
/// <value>The information value.</value>
|
|
[XmlText]
|
|
public string InformationValue { get; set; }
|
|
}
|
|
}
|