sharee.bike-App/TINKLib/ViewModel/Bikes/Bike/IRequestHandlerBase.cs
2023-07-04 11:06:38 +02:00

26 lines
763 B
C#

namespace TINK.ViewModel.Bikes.Bike
{
/// <summary>
/// Base interface for Copri and ILockIt request handler.
/// Copri communication is used by both handlers.
/// </summary>
public interface IRequestHandlerBase
{
/// <summary>
/// Gets a value indicating whether the copri button which is managed by request handler is visible or not.
/// </summary>
bool IsButtonVisible { get; }
/// <summary>View model to be used for progress report and unlocking/ locking view.</summary>
IBikesViewModel BikesViewModel { get; }
/// <summary>
/// Gets the text of the copri button which is managed by request handler.
/// </summary>
string ButtonText { get; }
/// <summary>Gets the is connected state. </summary>
bool IsConnected { get; }
}
}