using System; namespace TINK.Model.State { /// /// Interface to access informations about bike information. /// public interface IStateInfo : IBaseState { string MailAddress { get; } DateTime? From { get; } string Code { get; } } }