react-native-bt-device/ios/RNBTDevice/Device/DGMG/Algorithm/IValue.h

34 lines
838 B
Objective-C

//
// IValue.h
// Pods
//
// Created by Ran Zhao on 9/2/24.
//
#ifndef IValue_h
#define IValue_h
#import <Foundation/Foundation.h>
@interface IValue : NSObject <NSCoding>
@property (nonatomic, strong) NSNumber *I0;
@property (nonatomic, strong) NSNumber *I1;
@property (nonatomic, strong) NSNumber *I2;
@property (nonatomic, strong) NSNumber *I3;
@property (nonatomic, strong) NSNumber *I4;
@property (nonatomic, assign) int bgCurrent;
@property (nonatomic, strong) NSNumber *k;
@property (nonatomic, strong) NSNumber *rf;
@property (nonatomic, strong) NSNumber *current;
@property (nonatomic, strong) NSDate *currentTime;
@property (nonatomic, strong) NSNumber *bg;
@property (nonatomic, strong) NSDate *rfTime;
- (instancetype)initWithCurrentTime:(NSDate *)currentTime current:(NSNumber *)current;
@end
#endif /* IValue_h */