sharee.bike-App/TINKLib/Model/Bikes/Bike/BluetoothLock/ILockInfoMutable.cs
2021-05-13 20:03:07 +02:00

25 lines
697 B
C#

using System;
using TINK.Model.Bike.BluetoothLock;
namespace TINK.Model.Bikes.Bike.BluetoothLock
{
public interface ILockInfoMutable
{
/// <summary> Identification number of bluetooth lock.</summary>
int Id { get; }
/// <summary> Gets the user key.</summary>
byte[] UserKey { get; }
LockingState State { get; set; }
/// <summary> Holds the percentage of lock battery.</summary>
double BatteryPercentage { get; set; }
/// <summary> Changes during runtime: Can be unknown when set from copri and chang to a valid value when set from lock.</summary>
Guid Guid { get; set; }
byte[] Seed { get; }
}
}