BuyGoodsView.h 447 B

12345678910111213141516171819
  1. //
  2. // BuyGoodsView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/28.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomMessageModel.h"
  10. @interface BuyGoodsView : UIView
  11. @property (nonatomic, strong) UILabel * giveLabel; //送给主播
  12. @property (nonatomic, strong) UILabel * addExpLabel;//增加的商品经验
  13. - (void)addDataWithDesMoel:(CustomMessageModel *)model andIsHost:(BOOL )isHost;
  14. @end