2024-10-25 14:31:50 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 14:15:12 -04:00
|
|
|
|
2024-09-21 18:06:11 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2024-10-30 20:36:08 +01:00
|
|
|
namespace IntroSkipper.Data
|
2024-09-21 18:06:11 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Contains information about a show.
|
|
|
|
/// </summary>
|
|
|
|
public class ShowInfos
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Name of the show.
|
|
|
|
/// </summary>
|
|
|
|
public required string SeriesName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Year of the show.
|
|
|
|
/// </summary>
|
|
|
|
public required string ProductionYear { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Library of the show.
|
|
|
|
/// </summary>
|
|
|
|
public required string LibraryName { get; set; }
|
|
|
|
|
2024-10-18 14:15:09 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether its a movie.
|
|
|
|
/// </summary>
|
|
|
|
public required bool IsMovie { get; set; }
|
|
|
|
|
2024-09-21 18:06:11 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the Seasons of the show.
|
|
|
|
/// </summary>
|
2024-09-22 13:30:35 +02:00
|
|
|
public required Dictionary<Guid, int> Seasons { get; init; }
|
2024-09-21 18:06:11 +02:00
|
|
|
}
|
|
|
|
}
|