GoodsBannerModel.h 526 B

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