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

12 lines
187 B
C#

namespace TINK.Model.State
{
/// <summary>
/// Base state information.
/// </summary>
public interface IBaseState
{
InUseStateEnum Value { get; }
}
}