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.

11 lines
270 B

  1. @interface UADSMetaData : NSObject
  2. @property (nonatomic, strong) NSString *category;
  3. @property (nonatomic, strong) NSMutableDictionary *entries;
  4. - (instancetype)initWithCategory:(NSString *)category;
  5. - (void)set:(NSString *)key value:(id)value;
  6. - (void)commit;
  7. @end