27 lines
713 B
Objective-C
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
|