mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 02:13:31 +08:00
15 lines
340 B
C#
15 lines
340 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Metadata;
|
|
|
|
public class TranslationInfo
|
|
{
|
|
[JsonPropertyName("from")]
|
|
public string From { get; set; }
|
|
|
|
[JsonPropertyName("to")]
|
|
public string To { get; set; }
|
|
|
|
[JsonPropertyName("translated_text")]
|
|
public string TranslatedText { get; set; }
|
|
} |