2020-02-22 15:38:54 +04:00

10 lines
172 B
Objective-C

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