mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-10 19:50:53 +08:00
13 lines
298 B
C#
13 lines
298 B
C#
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi;
|
|
|
|
public sealed class ThorChatMessageAudioContent
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public string? Data { get; set; }
|
|
|
|
[JsonPropertyName("format")]
|
|
public string? Format { get; set; }
|
|
} |