mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-05 21:16:52 +00:00
chore: Move the related configuration items to the Common library.
This commit is contained in:
23
src/ZonyLrcTools.Common/Configuration/NetworkOptions.cs
Normal file
23
src/ZonyLrcTools.Common/Configuration/NetworkOptions.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace ZonyLrcTools.Common.Configuration
|
||||
{
|
||||
/// <summary>
|
||||
/// 工具网络相关的设定。
|
||||
/// </summary>
|
||||
public class NetworkOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否启用了网络代理功能。
|
||||
/// </summary>
|
||||
public bool IsEnable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 代理服务器的 Ip。
|
||||
/// </summary>
|
||||
public string Ip { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 代理服务器的 端口。
|
||||
/// </summary>
|
||||
public int Port { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user