// Copyright (C) 2024 Intro-Skipper contributors // SPDX-License-Identifier: GPL-3.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; }