-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRssItem.h
More file actions
26 lines (21 loc) · 549 Bytes
/
RssItem.h
File metadata and controls
26 lines (21 loc) · 549 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
//
// RssItem.h
// iReader-RSS
//
// Created by Julien Sarazin on 11/09/12.
// Copyright (c) 2012 Julien Sarazin. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "TouchXML.h"
#import "GTMNSString+HTML.h"
@interface RssItem : NSObject
@property NSString *channel;
@property NSString *title;
@property NSURL *link;
@property NSString *date;
@property NSString *description;
@property NSString *enclosure;
- (id)init;
- (id)initWithArray:(NSDictionary *) dictionary;
- (id)initWithXmlElement:(CXMLElement *) xmlElement;
@end