using System; namespace TINK.Model.State { /// /// Interface to access informations about bike information. /// public interface IStateInfo : IBaseState { string MailAddress { get; } /// /// Date of request/ booking action. /// DateTime? From { get; } /// /// Time span for which a bike can be reserved. /// TimeSpan? MaxReservationTimeSpan { get; } string Code { get; } } }