2023-08-31 12:31:38 +02:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS
|
2023-08-31 12:31:38 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Manages the state of a chargeable battery.
|
|
|
|
/// </summary>
|
|
|
|
public interface IBatteryMutable : INotifyPropertyChanged
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the current charging level of the battery in percent, double.NaN if unknown.
|
|
|
|
/// </summary>
|
|
|
|
double CurrentChargePercent { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the current charging level of the battery in bars. Must not be larger than MaxChargeBars, null if unknown.
|
|
|
|
/// </summary>
|
|
|
|
int? CurrentChargeBars { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the maximum charging level of the battery in bars, null if unknown.
|
|
|
|
/// </summary>
|
|
|
|
int? MaxChargeBars { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets whether backend is aware of battery charging level.
|
|
|
|
/// </summary>
|
|
|
|
bool? IsBackendAccessible { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets whether to display battery level or not.
|
|
|
|
/// </summary>
|
|
|
|
bool? IsHidden { get; }
|
|
|
|
}
|
|
|
|
}
|