autogen/cli/Models/SkillsResponse.cs
2023-06-07 16:57:45 +02:00

7 lines
146 B
C#

using System.Text.Json.Serialization;
public class SkillsResponse
{
[JsonPropertyName("response")]
public string? Response { get; set; }
}