23 lines
692 B
Objective-C
Executable File
23 lines
692 B
Objective-C
Executable File
//
|
|
// RSParsedFeed.h
|
|
// RSParser
|
|
//
|
|
// 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
|