mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 15:00:41 +00:00
13 lines
343 B
C#
13 lines
343 B
C#
namespace ZonyLrcTools.Common.Configuration;
|
|
|
|
public class LyricsOptions
|
|
{
|
|
public IEnumerable<LyricsProviderOptions> Plugin { get; set; }
|
|
|
|
public GlobalLyricsConfigOptions Config { get; set; }
|
|
|
|
public LyricsProviderOptions GetLyricProviderOption(string name)
|
|
{
|
|
return Plugin.FirstOrDefault(x => x.Name == name);
|
|
}
|
|
} |