mirror of
https://github.com/opa334/TrollStore.git
synced 2025-07-07 00:38:46 +08:00
8 lines
283 B
Objective-C
8 lines
283 B
Objective-C
@interface TSExploitDescriptor : NSObject
|
|
@property (nonatomic, copy) NSString *identifier;
|
|
@property (nonatomic, copy) NSString *minOS;
|
|
@property (nonatomic, copy) NSString *maxOS;
|
|
+ (instancetype)descriptorWithJSON:(NSDictionary *)json;
|
|
- (BOOL)isCompatibleWithCurrentDevice;
|
|
@end
|