Files
yinmeng-ios/xplan-ios/Main/ModuleKit/SendGiftView/Model/XPWeekStarRankUserModel.h
2022-05-07 17:58:15 +08:00

30 lines
570 B
Objective-C

//
// XPCharmRankUserModel.h
// xplan-ios
//
// Created by GreenLand on 2022/5/7.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPWeekStarRankUserModel : NSObject
///头像
@property (nonatomic, copy) NSString *avatar;
///榜单值
@property (nonatomic, assign) NSInteger amount;
///uid
@property (nonatomic, assign) NSInteger uid;
///二般号
@property (nonatomic, assign) NSInteger erbanNo;
///昵称
@property (nonatomic, copy) NSString *nick;
///礼物id
@property (nonatomic, assign) NSInteger giftId;
@end
NS_ASSUME_NONNULL_END