2023-07-06 16:54:13 +08:00
|
|
|
//
|
2023-07-14 18:50:55 +08:00
|
|
|
// UserGiftWallInfoModel.h
|
2023-07-06 16:54:13 +08:00
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by YUMI on 2022/4/14.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
@interface UserGiftWallInfoModel : PIBaseModel
|
2023-07-14 18:50:55 +08:00
|
|
|
///目标用户的uid
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,copy) NSString *uid;
|
2023-07-14 18:50:55 +08:00
|
|
|
///价格
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,assign) NSInteger giftPrice;
|
2023-07-14 18:50:55 +08:00
|
|
|
///id
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,assign) NSInteger giftId;
|
2023-07-14 18:50:55 +08:00
|
|
|
///名称
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,copy) NSString *giftName;
|
2023-07-14 18:50:55 +08:00
|
|
|
///礼物
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,copy) NSString *picUrl;
|
2023-07-14 18:50:55 +08:00
|
|
|
///个数
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,assign) NSInteger reciveCount;
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|