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

13 lines
267 B
C#

namespace MetaNodes.AniList;
/// <summary>
/// Represents the date information of the media.
/// </summary>
public class AniListDateData
{
/// <summary>
/// Gets or sets the year of the media's release.
/// </summary>
public int Year { get; set; }
}