Files
yuyin_ios/SweetParty/主类/狸猫新增/情侣空间/LMCPSpaceInfoModel.h

30 lines
815 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// 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