1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package org.ruoyi.system.response;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author WangLe
| */
| @Data
| public class MetadataResponse {
|
| /**
| * 语音角色头像 URL
| */
| private String avatar;
|
| /**
| * 语音角色描述
| */
| private String description;
|
| /**
| * 语音角色风格列表
| */
| private List<PromptResponse> prompts;
| }
|
|