sharee.bike-App/TINKLib/Model/State/IStateInfo.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

17 lines
271 B
C#

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