using System.Collections.Generic; namespace Netch.Models.Config { public class ShareMode { /// /// 硬件地址(用于 ARP 回复) /// /// CuteCR /// 43:75:74:65:43:52 /// /// NetchX /// 4e:65:74:63:68:58 /// [Newtonsoft.Json.JsonProperty("hardware")] public string Hardware = "4e:65:74:63:68:58"; /// /// 地址 /// [Newtonsoft.Json.JsonProperty("network")] public string Network = "100.64.0.0/24"; /// /// 网关 /// [Newtonsoft.Json.JsonProperty("gateway")] public string Gateway = "100.64.0.1"; /// /// DNS /// [Newtonsoft.Json.JsonProperty("dns")] public string DNS = "aiodns"; /// /// 网卡名(默认自动检测) /// public string EthernetName = "auto"; /// /// 绕过 IP 地址 /// [Newtonsoft.Json.JsonProperty("bypass")] public List BypassIPs = new(); } }