// Copyright (C) 2024 Intro-Skipper Contributors // SPDX-License-Identifier: GNU General Public License v3.0 only. using System; namespace ConfusedPolarBear.Plugin.IntroSkipper; /// /// Episode name and internal ID as returned by the visualization controller. /// public class EpisodeVisualization { /// /// Initializes a new instance of the class. /// /// Episode id. /// Episode name. public EpisodeVisualization(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; }