10 lines
184 B
C#
10 lines
184 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Toak.Api.Models;
|
|
|
|
public class WhisperResponse
|
|
{
|
|
[JsonPropertyName("text")]
|
|
public string Text { get; set; } = string.Empty;
|
|
}
|