Lumi/companion/plugins/Lumi.Companion.SongOverlay/SongOverlaySettings.cs
2026-07-24 14:44:27 +02:00

14 lines
532 B
C#

namespace Lumi.Companion.SongOverlay;
public sealed class SongOverlaySettings
{
public bool Enabled { get; set; } = true;
public string ProviderId { get; set; } = "spotify";
public int HeartbeatSeconds { get; set; } = 30;
public int SeekThresholdMilliseconds { get; set; } = 1500;
public bool SendCoverArt { get; set; } = true;
public bool UseSearchLinkFallback { get; set; } = true;
public string SpotifyClientId { get; set; } = "";
public string ProtectedSpotifyRefreshToken { get; set; } = "";
}