//
//  XXGSelectProductItem.h
//  XXGPlayKit
//
//  Created by apple on 2025/3/18.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface XXGSelectProductItem : NSObject

@property (nonatomic,copy) NSString * xxpk_name;

@property (nonatomic,copy) NSString * xxpk_logo;

@property (nonatomic,copy) NSString * xxpk_type;
 
@property (nonatomic,copy) NSString * xxpk_order_url;

@property (nonatomic, copy) NSString *xxpk_note;

@property (nonatomic, assign) BOOL xxpk_is_discount;

@property (nonatomic,copy) NSString * xxpk_amount_text; // 原价

@property (nonatomic,copy) NSString * xxpk_amount; // 有折扣就是折扣价，没折扣就是原价

@property (nonatomic,copy) NSString * xxpk_discount_text; // 折扣

@end

NS_ASSUME_NONNULL_END
