mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
22 lines
486 B
C
22 lines
486 B
C
|
//
|
||
|
// GDFileManagerAlias.h
|
||
|
// GDFileManagerExample
|
||
|
//
|
||
|
// Created by Graham Dennis on 21/08/13.
|
||
|
// Copyright (c) 2013 Graham Dennis. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
#import "GDURLMetadata.h"
|
||
|
|
||
|
@class GDFileManager;
|
||
|
|
||
|
@interface GDFileManagerAlias : NSObject <NSCoding>
|
||
|
|
||
|
@property (nonatomic, readonly) NSURL *originalURL;
|
||
|
@property (nonatomic, readonly) NSString *originalFilenamePath;
|
||
|
@property (nonatomic, readonly) GDURLMetadata *originalMetadata;
|
||
|
|
||
|
@end
|