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