12345678910111213141516171819202122 |
- //
- // SmartBarModel.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/14.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- 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
|