Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created November 4, 2014 12:03
Show Gist options
  • Save pbrewczynski/b543d6a00ce3011b7041 to your computer and use it in GitHub Desktop.
Save pbrewczynski/b543d6a00ce3011b7041 to your computer and use it in GitHub Desktop.
@interface Twigit_text_descriptor: NSObject
// Everything is copied form the row from text_descriptors table's row
@property (nonatomic) NSInteger id; // refactor
@property (nonatomic, strong) NSString *author;
@property (nonatomic, strong) NSString *title;
@property (nonatomic) NSInteger sentences_count;
@property (nonatomic) BOOL was_purchased;
@property (nonatomic) NSInteger price_tier;
@property (nonatomic, strong) NSString *itunes_connect_product_identifier;
@property (nonatomic, strong) NSString *last_price_with_currency;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment