2022-05-01 00:33:22 -05:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace ConfusedPolarBear.Plugin.IntroSkipper;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Episode queued for analysis.
|
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
public class QueuedEpisode
|
|
|
|
{
|
2022-05-01 00:33:22 -05:00
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Gets or sets the series name.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
public string SeriesName { get; set; } = string.Empty;
|
2022-05-01 00:33:22 -05:00
|
|
|
|
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Gets or sets the season number.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Gets or sets the episode id.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
|
|
|
public Guid EpisodeId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Gets or sets the full path to episode.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
public string Path { get; set; } = string.Empty;
|
2022-05-01 00:33:22 -05:00
|
|
|
|
2022-05-30 02:23:36 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name of the episode.
|
|
|
|
/// </summary>
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
2022-05-01 00:33:22 -05:00
|
|
|
/// <summary>
|
2022-05-09 22:50:41 -05:00
|
|
|
/// Gets or sets the seconds of media file to fingerprint.
|
2022-05-01 00:33:22 -05:00
|
|
|
/// </summary>
|
|
|
|
public int FingerprintDuration { get; set; }
|
|
|
|
}
|