MOConfigBaseData.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MOConfigBaseData.h
  3. //
  4. // Created by SuperCabbage on 2023/12/11
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class MOConfigList, MOLiveActivityForAnchor;
  9. @interface MOConfigBaseData : NSObject <NSCoding, NSCopying>
  10. /** video config list */
  11. @property (nonatomic, strong) NSArray *config;
  12. @property (nonatomic, strong) NSArray *divideRates;
  13. @property (nonatomic, strong) NSArray *tickets;
  14. /** voice config list */
  15. @property (nonatomic, strong) NSArray *configList;
  16. @property (nonatomic, strong) NSString *title;
  17. @property (nonatomic, strong) NSString *logoVideo;
  18. @property (nonatomic, strong) NSString *logoVoice;
  19. @property (nonatomic, strong) MOConfigList *tagVideo;
  20. @property (nonatomic, strong) MOConfigList *tagVoice;
  21. @property (nonatomic, strong) MOLiveActivityForAnchor *liveActivityForAnchor;
  22. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  23. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  24. - (NSDictionary *)dictionaryRepresentation;
  25. @end