RASettingOptionModel.h 604 B

123456789101112131415161718192021222324252627
  1. //
  2. // RASettingSelectionModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/12.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RASettingBaseModel.h"
  9. @interface RASettingOption : NSObject
  10. @property (nonatomic,assign) int option;
  11. @property (nonatomic,copy) NSString *title;
  12. @end
  13. @interface RASettingOptionModel : RASettingBaseModel
  14. @property (nonatomic,copy) NSString *keyPath;
  15. @property (nonatomic,strong) RASettingOption *option;
  16. @property (nonatomic,strong) NSArray<RASettingOption *> *options;
  17. - (int)selectedIndex;
  18. - (void)setSelectedIndex:(int)selectedIndex;
  19. @end