mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 07:49:43 -06:00
25 lines
556 B
C#
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; }
|
|
}
|
|
|
|
|