// // DRGoodDetailView.h // YouHuiProject // // Created by xiaoxi on 2018/1/25. // Copyright © 2018年 kuxuan. All rights reserved. // #import @class DRGoodDetailModel; @protocol YHGoodDetailViewDelegate; @interface DRGoodDetailView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) DRGoodDetailModel *goodModel; @property (nonatomic,strong)UIButton *collectButton; @end @protocol YHGoodDetailViewDelegate @optional - (void)yh_GoodDetailViewTapCoupon; - (void)yh_GoodDetailViewTapShop; - (void)yh_GoodDetailViewCollectButton; @end