NetNewsWire/Frameworks/RSParser/OPML/RSOPMLFeedSpecifier.h

25 lines
707 B
C
Raw Normal View History

//
// RSOPMLFeedSpecifier.h
2017-06-26 01:32:07 +02:00
// RSParser
//
// 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
@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-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;
@property (nonatomic, readonly) NSString *feedURL;
@end
2017-10-22 06:00:21 +02:00
NS_ASSUME_NONNULL_END