mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
18 lines
496 B
C#
18 lines
496 B
C#
namespace ZonyLrcTools.Common.Album
|
|
{
|
|
/// <summary>
|
|
/// 定义了程序默认提供的专辑图像下载器。
|
|
/// </summary>
|
|
public static class InternalAlbumDownloaderNames
|
|
{
|
|
/// <summary>
|
|
/// 网易云音乐专辑图像下载器。
|
|
/// </summary>
|
|
public const string NetEase = nameof(NetEase);
|
|
|
|
/// <summary>
|
|
/// QQ 音乐专辑图像下载器。
|
|
/// </summary>
|
|
public const string QQ = nameof(QQ);
|
|
}
|
|
} |