Files

11 lines
233 B
C#
Raw Permalink Normal View History

2025-07-17 23:10:26 +08:00
using System.Text.Json.Serialization;
2025-08-11 15:31:11 +08:00
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi
2025-07-17 23:10:26 +08:00
{
public class ThorToolChoiceFunctionTool
{
[JsonPropertyName("name")]
public string Name { get; set; }
}
}