namespace ZonyLrcTools.Common.Configuration { /// /// 工具网络相关的设定。 /// public class NetworkOptions { /// /// 是否启用了网络代理功能。 /// public bool IsEnable { get; set; } /// /// 代理服务器的 Ip。 /// public string Ip { get; set; } = null!; /// /// 代理服务器的 端口。 /// public int Port { get; set; } /// /// 更新检查的 Url。 /// public string UpdateUrl { get; set; } = default!; } }