namespace TINK.Model.Bike.BluetoothLock { public interface ILockInfo { /// <summary> Identification number of bluetooth lock.</summary> int Id { get; } /// <summary> Gets the user key.</summary> byte[] UserKey { get; } } }