// // ASGiftCardListViewModel.h // Asteria // // Created by iOS on 2023/12/2. // #import #import "ASGiftCardModel.h" NS_ASSUME_NONNULL_BEGIN @interface ASGiftCardListViewModel : NSObject @property (nonatomic, strong) NSMutableArray *unUseCardList; @property (nonatomic, strong) NSMutableArray *cantUseCardList; - (void)getUnuseCardList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com; - (void)getCantUseCardList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com; @end NS_ASSUME_NONNULL_END