mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
11 lines
236 B
C#
11 lines
236 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BetterLyrics.WinUI3.Models.Http
|
|
{
|
|
public class LibreTranslateResponse
|
|
{
|
|
[JsonPropertyName("translatedText")]
|
|
public string TranslatedText { get; set; }
|
|
}
|
|
}
|