mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 04:19:12 +00:00

* Feat. custom config * Fixes TypeInfoResolver Exception * Adjust UI * Fixes * Adjust Avalonia UI * Add Detour Feature * Avoids detour for private networks * Rename * Adds Documents
18 lines
465 B
C#
18 lines
465 B
C#
using SQLite;
|
|
|
|
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class FullConfigTemplateItem
|
|
{
|
|
[PrimaryKey]
|
|
public string Id { get; set; }
|
|
|
|
public string Remarks { get; set; }
|
|
public bool Enabled { get; set; } = false;
|
|
public ECoreType CoreType { get; set; }
|
|
public string? Config { get; set; }
|
|
public string? TunConfig { get; set; }
|
|
public bool? AddProxyOnly { get; set; } = false;
|
|
public string? ProxyDetour { get; set; }
|
|
}
|