This commit is contained in:
2026-01-29 15:53:26 +08:00
parent 07a77149fc
commit 766c62f3c0
10 changed files with 890 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
//
// 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