SmartBarModel.h 439 B

12345678910111213141516171819202122
  1. //
  2. // SmartBarModel.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/14.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol SmartBarModel
  11. @end
  12. @interface SmartBarModel : NSObject
  13. @property (nonatomic, copy) NSString * name;
  14. @property (nonatomic, copy) NSString * image;
  15. @property (nonatomic, assign) SmartBarType type;
  16. @end
  17. NS_ASSUME_NONNULL_END