mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-24 16:51:19 +01:00
22 lines
322 B
Objective-C
Executable File
22 lines
322 B
Objective-C
Executable File
//
|
|
// RSOPMLDocument.h
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 2/28/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
#import "RSOPMLItem.h"
|
|
|
|
|
|
|
|
|
|
@interface RSOPMLDocument : RSOPMLItem
|
|
|
|
@property (nonatomic) NSString *title;
|
|
@property (nonatomic) NSString *url;
|
|
|
|
@end
|