Files
peko-ios/YuMi/Modules/YMMessage/View/SayHello/Model/SessionSayHelloCountModel.h
2023-11-15 17:25:09 +08:00

20 lines
367 B
Objective-C

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