// Copyright (C) 2024 Intro-Skipper Contributors // SPDX-License-Identifier: GNU General Public License v3.0 only. using System; namespace IntroSkipper.Data; /// /// Episode name and internal ID as returned by the visualization controller. /// /// /// Initializes a new instance of the class. /// /// Episode id. /// Episode name. public class EpisodeVisualization(Guid id, string name) { /// /// Gets the id. /// public Guid Id { get; private set; } = id; /// /// Gets the name. /// public string Name { get; private set; } = name; }