// // SmartBarModel.h // smartRhino // // Created by niuzhen on 2019/12/14. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol SmartBarModel @end @interface SmartBarModel : NSObject @property (nonatomic, copy) NSString * name; @property (nonatomic, copy) NSString * image; @property (nonatomic, assign) SmartBarType type; @end NS_ASSUME_NONNULL_END