mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-19 14:12:53 +00:00
16 lines
450 B
C#
16 lines
450 B
C#
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; }
|
|
}
|