// // IValue.h // Pods // // Created by Ran Zhao on 9/2/24. // #ifndef IValue_h #define IValue_h #import @interface IValue : NSObject @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 */