29 lines
776 B
Objective-C
29 lines
776 B
Objective-C
//
|
|
// ChatFaceVo.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/5/7.
|
|
//
|
|
// 对应 http://beta.api.molistar.xyz/swagger-ui/index.html#/face-tab-new-controller/faceListUsingGET
|
|
|
|
#import "PIBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ChatFaceVo : PIBaseModel
|
|
@property (nonatomic, assign) NSInteger seqNo;
|
|
@property (nonatomic, copy) NSString *faceUrl;
|
|
@property (nonatomic, copy) NSString *faceIndex;
|
|
@property (nonatomic, assign) NSInteger showTimes;
|
|
@end
|
|
|
|
@interface ChatFaceResponse : PIBaseModel
|
|
@property (nonatomic, assign) BOOL useVip;
|
|
@property (nonatomic, copy) NSString *tabUrl;
|
|
@property (nonatomic, assign) NSInteger tabId;
|
|
@property (nonatomic, assign) NSInteger tabSeq;
|
|
@property (nonatomic, copy) NSArray <ChatFaceVo*> *faceNewVoList;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|