ASVipCouponsViewModel.h 499 B

1234567891011121314151617181920212223
  1. //
  2. // ASVipCouponsViewModel.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/12/9.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "ASVipCouponModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASVipCouponsViewModel : NSObject
  11. @property (nonatomic, strong) NSMutableArray<ASVipCouponModel *> *couponArr;
  12. - (void)getVipCouponList:(NSString *)v com:(void(^)(BOOL isSuccess, NSString *msg))com;
  13. - (void)postGetCoupon:(NSString *)ID com:(void(^)(BOOL isSuccess, NSString *msg))com;
  14. @end
  15. NS_ASSUME_NONNULL_END