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