2024-09-01 21:47:05 +00:00
|
|
|
//
|
|
|
|
|
// 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;
|
2024-09-02 18:06:27 +00:00
|
|
|
|
2024-09-01 21:47:05 +00:00
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
#endif /* IValue_h */
|