Files
FileFlowsPlugins/MetaNodes/AniList/AniListTitle.cs
2024-10-21 19:22:59 +13:00

25 lines
556 B
C#

namespace MetaNodes.AniList;
/// <summary>
/// Represents the title information of an anime show in multiple languages.
/// </summary>
public class AniListTitle
{
/// <summary>
/// Gets or sets the romaji title of the media.
/// </summary>
public string Romaji { get; set; }
/// <summary>
/// Gets or sets the English title of the media.
/// </summary>
public string English { get; set; }
/// <summary>
/// Gets or sets the native title of the media.
/// </summary>
public string Native { get; set; }
}