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