mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 21:46:38 +08:00
12 lines
292 B
C#
12 lines
292 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi;
|
|
|
|
public sealed class ThorChatAudioRequest
|
|
{
|
|
[JsonPropertyName("voice")]
|
|
public string? Voice { get; set; }
|
|
|
|
[JsonPropertyName("format")]
|
|
public string? Format { get; set; }
|
|
} |