627ae05def
* scan movies * Update ConfusedPolarBear.Plugin.IntroSkipper.csproj * fix * Update SegmentProvider.cs * fix * update * add movies to endpoints * Update * Update QueueManager.cs * revert * Update configPage.html Battery died. I’ll be back * “Borrow” show config to hide seasons * Add IsMovie to ShowInfos * remove unused usings * Add option to enable/disble movies * Use the left episode as movie editor * Timestamp erasure for movies * Add max credits duration for movies * Formatting and button style cleanup * remove fingerprint timings for movies * remove x2 from MaximumCreditsDuration in blackframe analyzer * Update SegmentProvider.cs * Update SegmentProvider.cs * Update SegmentProvider.cs * Update SegmentProvider.cs * Update BaseItemAnalyzerTask.cs --------- Co-Authored-By: rlauu <46294892+rlauu@users.noreply.github.com> Co-Authored-By: TwistedUmbrellaX <1173913+AbandonedCart@users.noreply.github.com>
37 lines
980 B
C#
37 lines
980 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntroSkipper.Controllers
|
|
{
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether its a movie.
|
|
/// </summary>
|
|
public required bool IsMovie { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets the Seasons of the show.
|
|
/// </summary>
|
|
public required Dictionary<Guid, int> Seasons { get; init; }
|
|
}
|
|
}
|