mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-02 05:10:42 +00:00
26 lines
743 B
C#
26 lines
743 B
C#
using System.Collections.Generic;
|
|
using YamlDotNet.Serialization;
|
|
using ZonyLrcTools.Cli.Infrastructure.Lyric;
|
|
using ZonyLrcTools.Cli.Infrastructure.Network;
|
|
using ZonyLrcTools.Cli.Infrastructure.Tag;
|
|
|
|
namespace ZonyLrcTools.Cli.Config
|
|
{
|
|
public class ToolOptions
|
|
{
|
|
/// <summary>
|
|
/// 支持的音乐文件后缀集合。
|
|
/// </summary>
|
|
public List<string> SupportFileExtensions { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网络代理相关的配置信息。
|
|
/// </summary>
|
|
public NetworkOptions NetworkOptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// 定义下载器的相关配置信息。
|
|
/// </summary>
|
|
public ProviderOption Provider { get; set; }
|
|
}
|
|
} |