123456789101112131415161718192021222324 |
- //
- // GoodsBannerModel.h
- // westkissMob
- //
- // Created by 王猛 on 2022/9/14.
- //
- #import <Foundation/Foundation.h>
- #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
|