-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathCountry.h
49 lines (38 loc) · 1.21 KB
/
Country.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Country.h
// ASiST
//
// Created by Oliver on 12.05.10.
// Copyright 2010 Drobnik.com. All rights reserved.
//
#import <CoreData/CoreData.h>
@class ReportSummary;
@class Review;
@class Sale;
@interface Country : NSManagedObject
{
}
@property (nonatomic, retain) NSString * iso3;
@property (nonatomic, retain) NSString * language;
@property (nonatomic, retain) NSString * iconImage;
@property (nonatomic, retain) NSString * iso2;
@property (nonatomic, retain) NSNumber * appStoreID;
@property (nonatomic, retain) NSString * name;
@property (nonatomic, retain) NSSet* sales;
@property (nonatomic, retain) NSSet* summaries;
@property (nonatomic, retain) NSSet* reviews;
@end
@interface Country (CoreDataGeneratedAccessors)
- (void)addSalesObject:(Sale *)value;
- (void)removeSalesObject:(Sale *)value;
- (void)addSales:(NSSet *)value;
- (void)removeSales:(NSSet *)value;
- (void)addSummariesObject:(ReportSummary *)value;
- (void)removeSummariesObject:(ReportSummary *)value;
- (void)addSummaries:(NSSet *)value;
- (void)removeSummaries:(NSSet *)value;
- (void)addReviewsObject:(Review *)value;
- (void)removeReviewsObject:(Review *)value;
- (void)addReviews:(NSSet *)value;
- (void)removeReviews:(NSSet *)value;
@end