From 70e45d5ba2e803997f019d7190e2591bdff5fc81 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Fri, 22 Aug 2025 15:10:51 +0300 Subject: [PATCH] Remove unused class --- MuzikaGromche/Plugin.cs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 6538c9a..f269052 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -808,21 +808,6 @@ namespace MuzikaGromche } } - public struct SelectableTrackData() - { - // Name of the track, as shown in config entry UI; also used for default file names. - public required string Name { get; init; } - - // Language of the track's lyrics. - public required Language Language { get; init; } - - // Whether this track has NSFW/explicit lyrics. - public bool IsExplicit { get; init; } = false; - - // How often this track should be chosen, relative to the sum of weights of all tracks. - public ConfigEntry Weight { get; internal set; } = null!; - } - // An instance of a track which appears as a configuration entry and // can be selected using weighted random from a list of selectable tracks. public interface ISelectableTrack