using System;
using System.Collections.Generic;
namespace 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; }
}
}