sharee.bike-App/TINKLib/Model/State/BaseState.cs
2021-05-13 20:03:07 +02:00

21 lines
600 B
C#

using System.Runtime.Serialization;
namespace TINK.Model.State
{
/// <summary>
/// Base type for serialization purposes.
/// </summary>
[DataContract]
[KnownType(typeof(StateAvailableInfo))]
[KnownType(typeof(StateRequestedInfo))]
[KnownType(typeof(StateOccupiedInfo))]
public abstract class BaseState
{
/// <summary> Constructor for Json serialization. </summary>
/// <param name="p_eValue">State value.</param>
protected BaseState(InUseStateEnum p_eValue) {}
public abstract InUseStateEnum Value { get; }
}
}