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