mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 07:26: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; }
|
|
} |