| 123456789101112131415161718192021222324252627 |
- //
- // RASettingSelectionModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RASettingBaseModel.h"
- @interface RASettingOption : NSObject
- @property (nonatomic,assign) int option;
- @property (nonatomic,copy) NSString *title;
- @end
- @interface RASettingOptionModel : RASettingBaseModel
- @property (nonatomic,copy) NSString *keyPath;
- @property (nonatomic,strong) RASettingOption *option;
- @property (nonatomic,strong) NSArray<RASettingOption *> *options;
- - (int)selectedIndex;
- - (void)setSelectedIndex:(int)selectedIndex;
- @end
|