23 lines
356 B
C
23 lines
356 B
C
|
|
//
|
||
|
|
// MyVipCarDatas.h
|
||
|
|
// TUICore
|
||
|
|
//
|
||
|
|
// Created by 末班车 on 2022/11/30.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
#import "TUIChat/Cell/CellData/Base/TUIMessageCellData.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MyVipCarDatas : TUIMessageCellData
|
||
|
|
|
||
|
|
@property NSString *text;
|
||
|
|
|
||
|
|
@property NSString *icon;
|
||
|
|
|
||
|
|
@property NSString *detal;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|