14 lines
532 B
C#
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; } = "";
|
|
}
|