Created
November 4, 2014 12:03
-
-
Save pbrewczynski/b543d6a00ce3011b7041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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