mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-18 20:34:46 +01:00
23 lines
450 B
Objective-C
23 lines
450 B
Objective-C
//
|
|
// 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;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|