Swiftgram/LegacyComponents/SGraphListNode.h
2017-07-23 15:43:10 +02:00

10 lines
172 B
Objective-C

#import <LegacyComponents/SGraphNode.h>
@interface SGraphListNode : SGraphNode
@property (nonatomic, strong) NSArray *items;
- (id)initWithItems:(NSArray *)items;
@end