RASettingSwitchModel.h 329 B

12345678910111213141516
  1. //
  2. // RASettingSwitchModel.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 RASettingSwitchModel : RASettingBaseModel
  10. @property (nonatomic,copy) NSString *keyPath;
  11. @property (nonatomic,assign) BOOL switchValue;
  12. @end