// // GoodsBannerModel.h // westkissMob // // Created by 王猛 on 2022/9/14. // #import #import "GoodsInformationM.h" 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 *small; +(GoodsBannerModel *)xxx_loadWithModel:(MediaGalleryEntriesModel *)tempModel; @end NS_ASSUME_NONNULL_END