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