| 12345678910111213141516171819202122232425262728 | 
							- //
 
- //  ASPointsViewModel.h
 
- //  Asteria
 
- //
 
- //  Created by iOS on 2023/12/2.
 
- //
 
- #import <Foundation/Foundation.h>
 
- #import "ASPointDetailModel.h"
 
- #import "ASExtraPointsModel.h"
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASPointsViewModel : NSObject
 
- @property (nonatomic, strong) NSMutableArray<ASExtraPointsModel *> *extraPathList;
 
- @property (nonatomic, strong) NSMutableArray<ASPointDetailModel *> *allList;
 
- @property (nonatomic, strong) NSMutableArray<ASPointDetailModel *> *usedList;
 
- - (void)getExtraList:(void(^)(BOOL hasNext, NSString *msg))com;
 
- - (void)getAllList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com;
 
- - (void)getUsedList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |