MOAlertBaseData.h 704 B

12345678910111213141516171819202122232425
  1. //
  2. // MOAlertBaseData.h
  3. //
  4. // Created by SuperCabbage on 2024/9/12
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOAlertBaseData : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, assign) BOOL actBigWinner;
  10. /** 弹框列表.. eg: 1=签到,2=礼包 */
  11. @property (nonatomic, strong) NSArray *codes;
  12. /** 浮窗列表.. eg: 1=首充礼包,2=超值礼包 */
  13. @property (nonatomic, strong) NSArray *floatings;
  14. @property (nonatomic, strong) NSArray *dialogsData;
  15. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  16. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  17. - (NSDictionary *)dictionaryRepresentation;
  18. @end