25 lines
582 B
Objective-C
25 lines
582 B
Objective-C
//
|
|
// LMLastWeekRankListModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMLastWeekRankListModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *nick_name;
|
|
@property (nonatomic, strong) NSString *receive_uid;
|
|
@property (nonatomic, strong) NSString *total_gift_num;
|
|
@property (nonatomic, strong) NSString *head_pic;
|
|
@property (nonatomic, strong) NSString *gift_name;
|
|
@property (nonatomic, strong) NSString *gid;
|
|
@property (nonatomic, strong) NSString *base_image;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|