Files
keyboard/keyBoard/Class/AiTalk/VC/AIPersonInfoVC.h
2026-01-29 15:53:26 +08:00

26 lines
517 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// AIPersonInfoVC.h
// keyBoard
//
// Created by Mac on 2026/1/29.
//
#import "BaseViewController.h"
NS_ASSUME_NONNULL_BEGIN
@interface AIPersonInfoVC : BaseViewController
/// 背景图 URL
@property (nonatomic, copy) NSString *backgroundImageURL;
/// 人设名称
@property (nonatomic, copy) NSString *personaName;
/// 人设介绍
@property (nonatomic, copy) NSString *personaIntroduction;
/// 人设 ID用于举报等
@property (nonatomic, assign) NSInteger personaId;
@end
NS_ASSUME_NONNULL_END