2017-12-18 15:35:50 -08: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;
|
2017-12-19 10:17:09 -08:00
|
|
|
@property (nonatomic, nullable) NSString *title;
|
2017-12-18 15:35:50 -08:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|