2022-03-19 00:44:11 +08:00
|
|
|
//
|
|
|
|
// ChatBubbleModel.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by GreenLand on 2022/3/18.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface ChatBubbleModel : NSObject
|
|
|
|
|
2022-03-21 11:49:13 +08:00
|
|
|
///气泡id
|
|
|
|
@property (nonatomic, copy) NSString *bubbleId;
|
|
|
|
///气泡url
|
|
|
|
@property (nonatomic, strong) NSString *bubbleUrl;
|
|
|
|
///来源
|
|
|
|
@property (nonatomic, assign) NSInteger comeFrom;
|
|
|
|
///过期天数
|
|
|
|
@property (nonatomic, assign) NSInteger expireDays;
|
|
|
|
///气泡名称
|
|
|
|
@property (nonatomic, copy) NSString *name;
|
|
|
|
///是否使用
|
|
|
|
@property (nonatomic, assign) BOOL hasUsed;
|
|
|
|
|
2022-03-19 00:44:11 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|