2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// RSOPMLFeedSpecifier.h
|
2017-06-26 01:32:07 +02:00
|
|
|
// RSParser
|
2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/28/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
2017-10-22 06:00:21 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2017-06-21 06:18:46 +02:00
|
|
|
|
|
|
|
@interface RSOPMLFeedSpecifier : NSObject
|
|
|
|
|
2017-10-22 06:00:21 +02:00
|
|
|
- (instancetype)initWithTitle:(NSString * _Nullable)title feedDescription:(NSString * _Nullable)feedDescription homePageURL:(NSString * _Nullable)homePageURL feedURL:(NSString *)feedURL;
|
2017-06-21 06:18:46 +02:00
|
|
|
|
2017-10-22 06:00:21 +02:00
|
|
|
@property (nonatomic, nullable, readonly) NSString *title;
|
|
|
|
@property (nonatomic, nullable, readonly) NSString *feedDescription;
|
|
|
|
@property (nonatomic, nullable, readonly) NSString *homePageURL;
|
2017-06-21 06:18:46 +02:00
|
|
|
@property (nonatomic, readonly) NSString *feedURL;
|
|
|
|
|
|
|
|
@end
|
2017-10-22 06:00:21 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|