RASettingSectionModel.h 328 B

12345678910111213141516
  1. //
  2. // RASettingSectionModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/12.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RASettingBaseModel;
  10. @interface RASettingSectionModel : NSObject
  11. @property (nonatomic,strong) NSArray<RASettingBaseModel *> *settings;
  12. @end