1234567891011121314151617181920212223242526 |
- //
- // GHManageModel.h
- // MSYOUPAI
- //
- // Created by You on 2024/5/22.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "GHListModel.h"
- @interface GHManageModel : NSObject
- @property (nonatomic, copy) NSString *after_key;
- @property (nonatomic, copy) NSString *is_star_scout;
- @property (nonatomic, copy) NSString *scout_model;
- @property (nonatomic, copy) NSString *total_income;
- @property (nonatomic, copy) NSString *total_page;
- @property (nonatomic, copy) NSString *total_people;
- @property (nonatomic, copy) NSString *user_income;
- @property (nonatomic, strong) NSArray<GHListModel *> *list;
- @end
|