22 lines
395 B
Objective-C
22 lines
395 B
Objective-C
//
|
|
// ChatLimitModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/12/8.
|
|
//
|
|
|
|
#import "NSObject+MJExtension.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ChatLimitModel : NSObject
|
|
|
|
@property (nonatomic, assign) BOOL chat;
|
|
@property (nonatomic, copy) NSString * message;
|
|
@property (nonatomic, copy) NSString * wealthLevel;
|
|
@property (nonatomic, copy) NSString * charmLevel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|