-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathRSSFeed.h
executable file
·50 lines (43 loc) · 1.34 KB
/
RSSFeed.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
49
//
// RSSFeed.h
// RSSKit
//
// Created by Árpád Goretity on 01/11/2011.
// Licensed under a CreativeCommons Attribution 3.0 Unported License
//
#import <Foundation/Foundation.h>
#import "RSSCloudService.h"
#import "RSSDefines.h"
@interface RSSFeed: NSObject {
RSSFeedType type;
NSString *title;
NSString *description;
NSString *url;
NSString *date;
NSString *author;
NSMutableArray *articles;
NSString *uid;
NSString *language;
NSString *copyright;
NSMutableArray *categories;
NSString *generator;
NSTimeInterval validTime;
NSString *iconUrl;
RSSCloudService *cloudService;
}
@property (nonatomic, assign) RSSFeedType type;
@property (nonatomic, retain) NSString *title;
@property (nonatomic, retain) NSString *description;
@property (nonatomic, retain) NSString *url;
@property (nonatomic, retain) NSString *date;
@property (nonatomic, retain) NSString *author;
@property (nonatomic, retain) NSMutableArray *articles;
@property (nonatomic, retain) NSString *uid;
@property (nonatomic, retain) NSString *language;
@property (nonatomic, retain) NSString *copyright;
@property (nonatomic, retain) NSMutableArray *categories;
@property (nonatomic, retain) NSString *generator;
@property (nonatomic, assign) NSTimeInterval validTime;
@property (nonatomic, retain) NSString *iconUrl;
@property (nonatomic, retain) RSSCloudService *cloudService;
@end