mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
24 lines
468 B
C#
24 lines
468 B
C#
using System;
|
|
|
|
namespace TINK.Model.State
|
|
{
|
|
/// <summary>
|
|
/// Interface to access informations about bike information.
|
|
/// </summary>
|
|
public interface IStateInfo : IBaseState
|
|
{
|
|
string MailAddress { get; }
|
|
|
|
/// <summary>
|
|
/// Date of request/ booking action.
|
|
/// </summary>
|
|
DateTime? From { get; }
|
|
|
|
/// <summary>
|
|
/// Time span for which a bike can be reserved.
|
|
/// </summary>
|
|
TimeSpan? MaxReservationTimeSpan { get; }
|
|
|
|
string Code { get; }
|
|
}
|
|
}
|