sharee.bike-App/SharedBusinessLogic/Model/Connector/IConnector.cs
2024-04-09 12:53:23 +02:00

15 lines
396 B
C#

namespace ShareeBike.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; }
}
}