mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
16 lines
271 B
C#
16 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; }
|
|
}
|
|
}
|