mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
20 lines
559 B
C#
20 lines
559 B
C#
namespace ZonyLrcTools.Common.Configuration
|
|
{
|
|
public class LyricsProviderOptions
|
|
{
|
|
/// <summary>
|
|
/// 歌词下载器的唯一标识。
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 歌词下载时的优先级,当值为 -1 时是禁用。
|
|
/// </summary>
|
|
public int Priority { get; set; }
|
|
|
|
/// <summary>
|
|
/// 搜索深度,值越大搜索结果越多,但搜索时间越长。
|
|
/// </summary>
|
|
public int Depth { get; set; }
|
|
}
|
|
} |