MOBaseVips.h 667 B

12345678910111213141516171819202122232425
  1. //
  2. // MOBaseVips.h
  3. //
  4. // Created by SuperCabbage on 2025/1/10
  5. // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOBaseVips : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *icon;//静态
  10. @property (nonatomic, assign) double type;
  11. @property (nonatomic, strong) NSString *image;//webp
  12. @property (nonatomic, strong) NSString *thumbnail;//gif
  13. @property (nonatomic, strong) NSString *entryBg;//进场背景
  14. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  15. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  16. - (NSDictionary *)dictionaryRepresentation;
  17. @end