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

15 lines
307 B
C#

using System;
namespace TINK.Model.State
{
/// <summary>
/// State of bikes which are either reserved or booked.
/// </summary>
public interface INotAvailableState : IBaseState
{
DateTime From { get; }
string MailAddress { get; }
string Code { get; }
}
}