1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-07-06 08:18:45 +08:00

Create TSExploitDescriptor.h

This commit is contained in:
a1109471307 2025-07-03 18:09:42 +08:00 committed by GitHub
parent cf150dd451
commit 50a7142b2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,7 @@
@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