| 12345678910111213141516 |
- //
- // RASettingSectionModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class RASettingBaseModel;
- @interface RASettingSectionModel : NSObject
- @property (nonatomic,strong) NSArray<RASettingBaseModel *> *settings;
- @end
|