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