namespace ConfusedPolarBear.Plugin.IntroSkipper.Data;
///
/// An Intro class with episode metadata. Only used in end to end testing programs.
///
public class IntroWithMetadata : Intro
{
///
/// Initializes a new instance of the class.
///
/// Series name.
/// Season number.
/// Episode title.
/// Intro timestamps.
public IntroWithMetadata(string series, int season, string title, Intro intro)
{
Series = series;
Season = season;
Title = title;
EpisodeId = intro.EpisodeId;
IntroStart = intro.IntroStart;
IntroEnd = intro.IntroEnd;
}
///
/// Gets or sets the series name of the TV episode associated with this intro.
///
public string Series { get; set; }
///
/// Gets or sets the season number of the TV episode associated with this intro.
///
public int Season { get; set; }
///
/// Gets or sets the title of the TV episode associated with this intro.
///
public string Title { get; set; }
}