Files
yuyin_ios/SweetParty/主类/狸猫新增/周星榜/LMCurrentWeekGiftRankListModel.h
2025-08-08 11:05:33 +08:00

27 lines
713 B
Objective-C

//
// LMCurrentWeekGiftRankListModel.h
// SweetParty
//
// Created by Xmac on 2024/8/7.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface LMCurrentWeekGiftRankListModel : NSObject
@property (nonatomic, strong) NSString *uid;
@property (nonatomic, strong) NSString *head_pic;
@property (nonatomic, strong) NSString *nick_name;
@property (nonatomic, strong) NSString *total_gift_num;
@property (nonatomic, strong) NSString *give_uid;
@property (nonatomic, strong) NSString *give_head_pic;
@property (nonatomic, strong) NSString *give_nick_name;
@property (nonatomic, strong) NSString *give_total_gift_num;
@property (nonatomic, strong) NSString *gift_name;
@end
NS_ASSUME_NONNULL_END