mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
15 lines
380 B
C#
15 lines
380 B
C#
namespace ZonyLrcTools.Cli.Config
|
|
{
|
|
public class LyricProviderOption
|
|
{
|
|
/// <summary>
|
|
/// 歌词下载器的唯一标识。
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 歌词下载时的优先级,当值为 -1 时是禁用。
|
|
/// </summary>
|
|
public int Priority { get; set; }
|
|
}
|
|
} |