| 1234567891011121314151617181920212223 |
- //
- // MODialogsData.h
- //
- // Created by SuperCabbage on 2025/2/21
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOJumpList, MOUserGift;
- @interface MODialogsData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double type;//类型(1=签到,2=礼包,3=Banner,4=新手礼包)
- @property (nonatomic, strong) MOJumpList *jumpList;
- @property (nonatomic, strong) NSArray<MOUserGift *> *userGifts;//type=4的时候才有这个数组
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|