ASGiftCardListViewModel.h 590 B

1234567891011121314151617181920212223
  1. //
  2. // ASGiftCardListViewModel.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/12/2.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "ASGiftCardModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASGiftCardListViewModel : NSObject
  11. @property (nonatomic, strong) NSMutableArray<ASGiftCardModel *> *unUseCardList;
  12. @property (nonatomic, strong) NSMutableArray<ASGiftCardModel *> *cantUseCardList;
  13. - (void)getUnuseCardList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com;
  14. - (void)getCantUseCardList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com;
  15. @end
  16. NS_ASSUME_NONNULL_END