mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 01:40:15 -06:00
13 lines
267 B
C#
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; }
|
|
}
|