style: 调整架构引用

This commit is contained in:
chenchun
2025-08-11 15:31:11 +08:00
parent 25eebec8f7
commit 42d537a68b
55 changed files with 63 additions and 61 deletions

View File

@@ -0,0 +1,12 @@
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; }
}