sharee.bike-App/SharedBusinessLogic/Model/State/IBaseState.cs
2024-04-09 12:53:23 +02:00

11 lines
169 B
C#

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