Files
peko-ios/YuMi/Modules/YMRoom/View/SendGiftView/Model/XPWeekStarRankUserModel.h
2023-11-15 17:25:09 +08:00

31 lines
625 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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