You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
270 B

@interface UADSMetaData : NSObject
@property (nonatomic, strong) NSString *category;
@property (nonatomic, strong) NSMutableDictionary *entries;
- (instancetype)initWithCategory:(NSString *)category;
- (void)set:(NSString *)key value:(id)value;
- (void)commit;
@end