26 lines
457 B
Objective-C
26 lines
457 B
Objective-C
//
|
|
// XPRoomWelcomeModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by XY on 2023/3/23.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomWelcomeModel : NSObject
|
|
|
|
///用户ID
|
|
@property (nonatomic,copy) NSString *targetUid;
|
|
///用户昵称
|
|
@property (nonatomic, copy) NSString *targetNick;
|
|
///内容
|
|
@property (nonatomic, copy) NSString *content;
|
|
///是不是粉丝
|
|
@property (nonatomic, assign) BOOL isFans;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|