2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// RSParsedFeed.h
|
2017-06-26 01:32:07 +02:00
|
|
|
// RSParser
|
2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/12/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
@class RSParsedArticle;
|
|
|
|
|
|
|
|
@interface RSParsedFeed : NSObject
|
|
|
|
|
|
|
|
- (nonnull instancetype)initWithURLString:(NSString * _Nonnull)urlString title:(NSString * _Nullable)title link:(NSString * _Nullable)link articles:(NSArray <RSParsedArticle *>* _Nonnull)articles;
|
|
|
|
|
|
|
|
@property (nonatomic, readonly, nonnull) NSString *urlString;
|
|
|
|
@property (nonatomic, readonly, nullable) NSString *title;
|
|
|
|
@property (nonatomic, readonly, nullable) NSString *link;
|
|
|
|
@property (nonatomic, readonly, nonnull) NSSet <RSParsedArticle *>*articles;
|
|
|
|
|
|
|
|
@end
|