// // ASCouponsListViewModel.h // Asteria // // Created by iOS on 2023/11/30. // #import #import "ASCouponsModel.h" NS_ASSUME_NONNULL_BEGIN @interface ASCouponsListViewModel : NSObject @property (nonatomic, strong) NSMutableArray *couponList; - (void)getCouponList:(NSInteger)page com:(void(^)(BOOL hasNext, NSString *msg))com; @end NS_ASSUME_NONNULL_END