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