mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 07:49:43 -06:00
22 lines
600 B
C#
22 lines
600 B
C#
namespace MetaNodes.AniList;
|
|
|
|
/// <summary>
|
|
/// Represents the media data of an anime show with episode information from AniList API.
|
|
/// </summary>
|
|
public class AniListMediaEpisodeData
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the season number of the media.
|
|
/// </summary>
|
|
public int Season { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the total number of episodes in the media.
|
|
/// </summary>
|
|
public int Episodes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the season episodes.
|
|
/// </summary>
|
|
public List<AniListEpisodeData> SeasonEpisodes { get; set; }
|
|
} |