1
0

Refactor: Reorganize project structure by moving core components into dedicated directories and introducing new configuration and API models.

This commit is contained in:
2026-02-26 21:51:36 +01:00
parent fbff8c98ff
commit d60730c4bf
13 changed files with 83 additions and 60 deletions

View File

@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace Toak.Api.Models;
public class WhisperResponse
{
[JsonPropertyName("text")]
public string Text { get; set; } = string.Empty;
}