using System; namespace ConfusedPolarBear.Plugin.IntroSkipper; /// /// Episode name and internal ID as returned by the troubleshooter. /// public class TroubleshooterEpisode { /// /// Initializes a new instance of the class. /// /// Episode id. /// Episode name. public TroubleshooterEpisode(Guid id, string name) { Id = id; Name = name; } /// /// Gets the id. /// public Guid Id { get; private set; } /// /// Gets the name. /// public string Name { get; private set; } = string.Empty; }