21 lines
653 B
C#
21 lines
653 B
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="HiddenPinPlaceModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>fiedlchr</author>
|
|
// <sience>13.08.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
namespace CampusAppWP8.Model.Campusmap
|
|
{
|
|
/// <summary>Hidden pin place model.</summary>
|
|
/// <remarks>Stubbfel, 27.08.2013.</remarks>
|
|
public class HiddenPinPlaceModel : MapPinModel
|
|
{
|
|
|
|
public HiddenPinPlaceModel()
|
|
{
|
|
this.Tag = MapPinModel.HiddenPlacePinString;
|
|
}
|
|
}
|
|
}
|