mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Constants
|
|
{
|
|
public class PlayerName
|
|
{
|
|
public const string LXMusic = "LX Music";
|
|
public const string MediaPlayerWindows11 = "Media Player";
|
|
public const string AIMP = "AIMP";
|
|
public const string Foobar2000 = "foobar2000";
|
|
public const string MusicBee = "MusicBee";
|
|
public const string PotPlayer = "PotPlayer";
|
|
public const string Spotify = "Spotify";
|
|
public const string AppleMusic = "Apple Music";
|
|
public const string AppleMusicAlternative = "Apple Music";
|
|
public const string NetEaseCloudMusic = "网易云音乐";
|
|
public const string KugouMusic = "酷狗音乐";
|
|
public const string QQMusic = "QQ 音乐";
|
|
public const string iTunes = "iTunes";
|
|
public const string Chrome = "Google Chrome";
|
|
public const string Edge = "Microsoft Edge";
|
|
public const string BetterLyrics = "BetterLyrics";
|
|
public const string BetterLyricsDebug = "BetterLyrics (Debug)";
|
|
public const string SaltPlayerForWindows = "Salt Player for Windows";
|
|
public const string MoeKoeMusic = "MoeKoe Music";
|
|
public const string Listen1 = "Listen 1";
|
|
}
|
|
}
|