mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
22 lines
473 B
Objective-C
Executable File
22 lines
473 B
Objective-C
Executable File
//
|
|
// GDFileStoreNode.h
|
|
// GDFileManagerExample
|
|
//
|
|
// Created by Graham Dennis on 15/07/13.
|
|
// Copyright (c) 2013 Graham Dennis. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol GDURLMetadata;
|
|
|
|
@interface GDFileTreeNode : NSObject
|
|
|
|
- (instancetype)initWithURL:(NSURL *)url;
|
|
|
|
@property (nonatomic, strong, readonly) NSURL *url;
|
|
@property (nonatomic, strong) id <GDURLMetadata> metadata;
|
|
@property (nonatomic, copy) NSArray *directoryContents;
|
|
|
|
@end
|