31 lines
625 B
Objective-C
31 lines
625 B
Objective-C
//
|
||
// YMCharmRankUserModel.h
|
||
// YUMI
|
||
//
|
||
// Created by YUMI on 2022/5/7.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface XPWeekStarRankUserModel : PIBaseModel
|
||
///0:冠名,1、神豪
|
||
@property(nonatomic,assign) int type;
|
||
///头像
|
||
@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
|