using System; using System.Collections.Generic; namespace ConfusedPolarBear.Plugin.IntroSkipper.Controllers { /// /// Contains information about a show. /// public class ShowInfos { /// /// Gets or sets the Name of the show. /// public required string SeriesName { get; set; } /// /// Gets or sets the Year of the show. /// public required string ProductionYear { get; set; } /// /// Gets or sets the Library of the show. /// public required string LibraryName { get; set; } /// /// Gets or sets a value indicating whether its a movie. /// public required bool IsMovie { get; set; } /// /// Gets the Seasons of the show. /// public required Dictionary Seasons { get; init; } } }