sharee.bike-App/TINKLib/Model/Connector/IConnector.cs
2023-11-06 12:23:09 +01:00

15 lines
390 B
C#

namespace TINK.Model.Connector
{
public interface IConnector
{
/// <summary> Object for querying stations and bikes.</summary>
ICommand Command { get; }
/// <summary> Object for querying 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; }
}
}