//
|
// WACoinsInfo.h
|
// WASdkIntf
|
//
|
// Created by lpw on 2026/2/27.
|
// Copyright © 2026 GHW-T-01. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface WACoinsInfo : NSObject<NSCopying>
|
|
|
@property (nonatomic, assign) long long coinsAmount;// 代金券余额(默认 0)
|
@property (nonatomic, assign) BOOL isEnableCoins;//平台币是否开启 NO - 未开启 YES - 已开启
|
|
|
@property (nonatomic, assign) NSInteger isPaidUser;//是否付费用户:0 - 否 1 - 是
|
@property (nonatomic, assign) NSInteger hasCoinsAccount; //是否有代金券账号 0 - 否 1 - 是
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|