mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-02 15:16:37 +08:00
11 lines
241 B
C#
11 lines
241 B
C#
|
|
|
|||
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
public sealed class ThorChatMessageAudioContent
|
|||
|
|
{
|
|||
|
|
[JsonPropertyName("data")]
|
|||
|
|
public string? Data { get; set; }
|
|||
|
|
|
|||
|
|
[JsonPropertyName("format")]
|
|||
|
|
public string? Format { get; set; }
|
|||
|
|
}
|