Files
yinmeng-ios/xplan-ios/Main/Mine/View/DressUp/Model/ChatBubbleModel.h

33 lines
721 B
C
Raw Normal View History

//
// 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;
2024-02-04 11:56:45 +08:00
@property(nonatomic,assign) float expireDays;
@property(nonatomic,assign)float expireHour;
@property(nonatomic,assign) float expireMinute;
2022-03-21 11:49:13 +08:00
///气泡名称
@property (nonatomic, copy) NSString *name;
///是否使用
@property (nonatomic, assign) BOOL hasUsed;
2022-03-29 15:48:39 +08:00
///是否过期
@property (nonatomic, assign) BOOL hasExpired;
2022-03-21 11:49:13 +08:00
@end
NS_ASSUME_NONNULL_END