lpw
23 hours ago 303b8f43a0f25b1bd791061e0d0ba3d862238386
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  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