1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <Foundation/Foundation.h>
- @interface HCFeatures : NSObject
- @property BOOL isTrial;
- @property BOOL trialExpired;
- @property double trialRemainingSec;
- @property double trialEndTime;
- @property (nonatomic, strong) NSString *trialEnd;
- @property BOOL accountRemoveExpired;
- @property double accountRemoveRemainingSec;
- @property double accountRemoveTime;
- @property (nonatomic, strong) NSString *accountRemove;
- @property (nonatomic, strong) NSString *nextGroupExpirationGroup;
- @property BOOL nextGroupExpirationGroupExpired;
- @property double nextGroupExpirationExpiresTime;
- @property (nonatomic, strong) NSString *nextGroupExpirationExpires;
- @end
|