30 lines
815 B
C
30 lines
815 B
C
|
|
//
|
||
|
|
// LMCPSpaceInfoModel.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/16.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface LMCPSpaceInfoModel : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSString *uid;
|
||
|
|
@property (nonatomic, strong) NSString *receive_uid;
|
||
|
|
@property (nonatomic, strong) NSString *cp_level;
|
||
|
|
@property (nonatomic, assign) CGFloat cp_value;
|
||
|
|
@property (nonatomic, strong) NSString *u_nick_name;
|
||
|
|
@property (nonatomic, strong) NSString *u_head_pic;
|
||
|
|
@property (nonatomic, strong) NSString *receive_nick_name;
|
||
|
|
@property (nonatomic, strong) NSString *receive_head_pic;
|
||
|
|
@property (nonatomic, assign) CGFloat next_cp_value;
|
||
|
|
@property (nonatomic, strong) NSString *receive_avatar_play_image;
|
||
|
|
@property (nonatomic, strong) NSString *u_avatar_play_image;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|