34 lines
823 B
Objective-C
34 lines
823 B
Objective-C
//
|
|
// ContentTreasureFairyModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2023/2/23.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ContentTreasureFairyModel : PIBaseModel
|
|
///用户uid
|
|
@property (nonatomic,copy) NSString *uid;
|
|
///目标用户的uid
|
|
@property (nonatomic,copy) NSString *targetUid;
|
|
///精灵的id
|
|
@property (nonatomic,copy) NSString *elfId;
|
|
///精灵的图片
|
|
@property (nonatomic,copy) NSString *elfPicUrl;
|
|
///显示的内容
|
|
@property (nonatomic,copy) NSString *msgContent;
|
|
///精灵的名称
|
|
@property (nonatomic,copy) NSString *elfName;
|
|
///目标用户的昵称
|
|
@property (nonatomic,copy) NSString *targetNick;
|
|
///用户的昵称
|
|
@property (nonatomic,copy) NSString *nick;
|
|
///是否已经赠送过了
|
|
@property (nonatomic,assign) BOOL isSended;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|