GoodsBannerModel.h 567 B

123456789101112131415161718192021222324
  1. //
  2. // GoodsBannerModel.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/14.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GoodsInformationM.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger,CellContentType){
  11. CellContentTypeImg ,
  12. CellContentTypeVideo
  13. } ;
  14. @interface GoodsBannerModel : NSObject
  15. @property(nonatomic, assign) CellContentType cellType;
  16. @property (nonatomic, copy) NSString *url;
  17. @property (nonatomic, copy) NSString *small;
  18. +(GoodsBannerModel *)xxx_loadWithModel:(MediaGalleryEntriesModel *)tempModel;
  19. @end
  20. NS_ASSUME_NONNULL_END