28 lines
679 B
Objective-C
Executable File
28 lines
679 B
Objective-C
Executable File
//
|
|
// YYRoomCPRankModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2024/1/10.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYRoomCPRankModel : NSObject
|
|
|
|
@property(nonatomic, copy) NSString *uid;
|
|
@property(nonatomic, copy) NSString *head_pic;
|
|
@property(nonatomic, copy) NSString *nick_name;
|
|
@property(nonatomic, copy) NSString *receive_uid;
|
|
@property(nonatomic, copy) NSString *receive_head_pic;
|
|
@property(nonatomic, copy) NSString *receive_nick_name;
|
|
@property(nonatomic, copy) NSString *total_amount;
|
|
|
|
@property(nonatomic, copy) NSString *win_base_image;
|
|
@property(nonatomic, copy) NSString *receive_win_base_image;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|