using System.Collections.Generic; namespace ZonyLrcTools.Cli.Infrastructure.Lyric; public class LyricOption { public IEnumerable Plugin { get; set; } public LyricConfigOption Config { get; set; } } public class LyricConfigOption { /// /// 双语歌词是否合并为一行。 /// public bool IsOneLine { get; set; } = false; /// /// 换行符格式,取值来自 常量类。 /// public string LineBreak { get; set; } = LineBreakType.Windows; /// /// 是否启用歌词翻译功能。 /// public bool IsEnableTranslation { get; set; } = false; }