DSVCGameGiftModel.h 1.97 KB
//
//  DSVCGameGiftModel.h
//  DSCnliveShopSDK
//
//  Created by zhaolin on 2019/6/27.
//  Copyright © 2019 BIKE. All rights reserved.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

#pragma mark - 用户信息

@interface DSVCGameGiftUserModel : NSObject

/**
 选手id
 */
@property (nonatomic,copy) NSString * id;
/**
 名称
 */
@property (nonatomic,copy) NSString * title;
/**
 头像
 */
@property (nonatomic,copy) NSString * img;
/**
 介绍
 */
@property (nonatomic,copy) NSString * desc;
/**

 */
@property (nonatomic,copy) NSString * share_title;
/**
 
 */
@property (nonatomic,copy) NSString * share_img;
/**
 
 */
@property (nonatomic,copy) NSString * share_desc;
/**
 
 */
@property (nonatomic,copy) NSString * vote_activity_id;
/**
 号码
 */
@property (nonatomic,copy) NSString * number;
/**

 */
@property (nonatomic,copy) NSString * sex;
/**
 
 */
@property (nonatomic,copy) NSString * phone;
/**
 
 */
@property (nonatomic,copy) NSString * card;
/**
 票数
 */
@property (nonatomic,copy) NSString * votes;
/**
 粉丝
 */
@property (nonatomic,copy) NSString * fans;
/**
 排名
 */
@property (nonatomic,copy) NSString * rank;

@end

#pragma mark - 礼物列表

@interface DSVCGameGiftListModel : NSObject

/**
 礼物id
 */
@property (nonatomic,copy) NSString * id;
/**
 名称
 */
@property (nonatomic,copy) NSString * title;
/**
 图片
 */
@property (nonatomic,copy) NSString * img;
/**
 要使用的虚拟币数
 */
@property (nonatomic,copy) NSString * money;
/**
 给对方增加的票数
 */
@property (nonatomic,copy) NSString * votes;
/**
 1免费票 0正常票
 */
@property (nonatomic,copy) NSString * is_free;

@end

#pragma mark - 第一级

@interface DSVCGameGiftModel : NSObject

/**
 礼物列表
 */
@property (nonatomic,copy) NSArray<DSVCGameGiftListModel*> * list;
/**
 支付协议链接
 */
@property (nonatomic,copy) NSString * url_pay_agreement;
/**
 用户信息
 */
@property (nonatomic,strong) DSVCGameGiftUserModel * user;

@end

NS_ASSUME_NONNULL_END