NetNewsWire/Frameworks/RSParser/Feeds/XML/RSParsedEnclosure.h

23 lines
450 B
C
Raw Normal View History

2017-12-19 00:35:50 +01:00
//
// RSParsedEnclosure.h
// RSParser
//
// Created by Brent Simmons on 12/18/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
NS_ASSUME_NONNULL_BEGIN
@interface RSParsedEnclosure : NSObject
@property (nonatomic) NSString *url;
@property (nonatomic) NSInteger length;
@property (nonatomic, nullable) NSString *mimeType;
@property (nonatomic, nullable) NSString *title;
2017-12-19 00:35:50 +01:00
@end
NS_ASSUME_NONNULL_END