mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
15 lines
440 B
C#
15 lines
440 B
C#
|
namespace TINK.Model.Connector
|
|||
|
{
|
|||
|
public interface IConnector
|
|||
|
{
|
|||
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|||
|
ICommand Command { get; }
|
|||
|
|
|||
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|||
|
IQuery Query { get; }
|
|||
|
|
|||
|
/// <summary> True if connector has access to copri server, false if cached values are used. </summary>
|
|||
|
bool IsConnected { get; }
|
|||
|
}
|
|||
|
}
|