-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCaterory.h
More file actions
29 lines (22 loc) · 734 Bytes
/
Caterory.h
File metadata and controls
29 lines (22 loc) · 734 Bytes
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
//
// Caterory.h
// PirateBoat
//
// Created by Nicolas Dufreche on 01/06/12.
// Copyright (c) 2012 Dev0rAlive. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Caterory : NSManagedObject
@property (nonatomic, retain) NSString * title;
@property (nonatomic, retain) NSString * feedUrl;
@property (nonatomic, retain) NSString * url;
@property (nonatomic, retain) NSNumber * entityId;
@property (nonatomic, retain) NSSet *torrents;
@end
@interface Caterory (CoreDataGeneratedAccessors)
- (void)addTorrentsObject:(NSManagedObject *)value;
- (void)removeTorrentsObject:(NSManagedObject *)value;
- (void)addTorrents:(NSSet *)values;
- (void)removeTorrents:(NSSet *)values;
@end