mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
14 lines
338 B
C#
14 lines
338 B
C#
namespace ZonyLrcTools.Common.Configuration;
|
|
|
|
public class ProviderOptions
|
|
{
|
|
/// <summary>
|
|
/// 标签加载器相关的配置属性。
|
|
/// </summary>
|
|
public TagInfoOptions Tag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 歌词下载相关的配置信息。
|
|
/// </summary>
|
|
public LyricsOptions Lyric { get; set; }
|
|
} |