1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-07-07 00:38:46 +08:00
TrollStore/ExploitManager/TSExploitDescriptor.h
2025-07-03 18:09:42 +08:00

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