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