mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
15 lines
307 B
C#
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; }
|
|||
|
}
|
|||
|
}
|