1234567891011121314151617181920212223 |
- //
- // ASVipCouponsViewModel.h
- // Asteria
- //
- // Created by iOS on 2023/12/9.
- //
- #import <Foundation/Foundation.h>
- #import "ASVipCouponModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASVipCouponsViewModel : NSObject
- @property (nonatomic, strong) NSMutableArray<ASVipCouponModel *> *couponArr;
- - (void)getVipCouponList:(NSString *)v com:(void(^)(BOOL isSuccess, NSString *msg))com;
- - (void)postGetCoupon:(NSString *)ID com:(void(^)(BOOL isSuccess, NSString *msg))com;
- @end
- NS_ASSUME_NONNULL_END
|