25 lines
561 B
Objective-C
25 lines
561 B
Objective-C
//
|
|
// MessagePublicEventModel.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/5/13.
|
|
//
|
|
|
|
#import "MessageBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessagePublicEventModel : MessageBaseModel
|
|
|
|
@property (nonatomic, copy) NSString *eventBanner;
|
|
@property (nonatomic, assign) NSInteger roomUid;
|
|
@property (nonatomic, copy) NSString *id;
|
|
@property (nonatomic, copy) NSString *eventTopic;
|
|
@property (nonatomic, copy) NSString *eventDetail;
|
|
@property (nonatomic, assign) NSInteger type;
|
|
@property (nonatomic, assign) NSInteger roomErbanNo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|