// // GoodsBannerModel.h // westkissMob // // Created by 王猛 on 2022/9/14. // #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger,CellContentType){ CellContentTypeImg , CellContentTypeVideo } ; @interface GoodsBannerModel : NSObject @property(nonatomic, assign) CellContentType cellType; @property (nonatomic, copy) NSString *url; @property (nonatomic, copy) NSString *label; +(GoodsBannerModel *)xxx_loadWithModel:(NSDictionary *)bannerDic; @end NS_ASSUME_NONNULL_END