20 lines
364 B
Objective-C
20 lines
364 B
Objective-C
//
|
|
// SessionSayHelloCountModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2023/2/3.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SessionSayHelloCountModel : NSObject
|
|
///有多少人想和你打招呼
|
|
@property (nonatomic,assign) NSInteger helloCount;
|
|
///是否可见
|
|
@property (nonatomic,assign) BOOL visible;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|