GiftModel.h 604 Bytes
//
//  GiftModel.h
//  presentAnimation
//
//  Created by 许博 on 16/7/15.
//  Copyright © 2016年 许博. All rights reserved.
//


#import <UIKit/UIKit.h>

@interface GiftModel : NSObject

@property (nonatomic,copy) NSString *userId; // 用户id
@property (nonatomic,copy) NSString *userName; // 用户id
@property (nonatomic,copy) NSString *headImageUrl; // 头像
@property (nonatomic,copy) NSString *giftImageUrl; // 礼物
@property (nonatomic,copy) NSString *giftName; // 礼物名称
@property (nonatomic) NSInteger totalGiftNumber; // 礼物个数
@property (nonatomic) BOOL isShowing;

@end