mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 21:23:04 +00:00
20 lines
801 B
C#
20 lines
801 B
C#
namespace ServiceLib.Models;
|
|
|
|
public record CoreConfigContext
|
|
{
|
|
public required ProfileItem Node { get; init; }
|
|
public RoutingItem? RoutingItem { get; init; }
|
|
public DNSItem? RawDnsItem { get; init; }
|
|
public SimpleDNSItem SimpleDnsItem { get; init; } = new();
|
|
public Dictionary<string, ProfileItem> AllProxiesMap { get; init; } = new();
|
|
public Config AppConfig { get; init; } = new();
|
|
public FullConfigTemplateItem? FullConfigTemplate { get; init; } = new();
|
|
|
|
// Test ServerTestItem Map
|
|
public Dictionary<string, string> ServerTestItemMap { get; init; } = new();
|
|
|
|
// TUN Compatibility
|
|
public bool IsTunEnabled { get; init; } = false;
|
|
public HashSet<string> ProtectDomainList { get; init; } = new();
|
|
public int ProtectSocksPort { get; init; } = 0;
|
|
}
|