using System; namespace ConfusedPolarBear.Plugin.IntroSkipper; /// /// Episode queued for analysis. /// public class QueuedEpisode { /// /// Gets or sets the series name. /// public string SeriesName { get; set; } = string.Empty; /// /// Gets or sets the season number. /// public int SeasonNumber { get; set; } /// /// Gets or sets the episode id. /// public Guid EpisodeId { get; set; } /// /// Gets or sets the full path to episode. /// public string Path { get; set; } = string.Empty; /// /// Gets or sets the name of the episode. /// public string Name { get; set; } = string.Empty; /// /// Gets or sets the seconds of media file to fingerprint. /// public int FingerprintDuration { get; set; } }