mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-15 10:29:33 +00:00
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release Linux / rpm (push) Blocked by required conditions
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class Config
|
|
{
|
|
#region property
|
|
|
|
public string IndexId { get; set; }
|
|
public string SubIndexId { get; set; }
|
|
|
|
#endregion property
|
|
|
|
#region other entities
|
|
|
|
public CoreBasicItem CoreBasicItem { get; set; }
|
|
public TunModeItem TunModeItem { get; set; }
|
|
public KcpItem KcpItem { get; set; }
|
|
public GrpcItem GrpcItem { get; set; }
|
|
public RoutingBasicItem RoutingBasicItem { get; set; }
|
|
public GUIItem GuiItem { get; set; }
|
|
public MsgUIItem MsgUIItem { get; set; }
|
|
public UIItem UiItem { get; set; }
|
|
public ConstItem ConstItem { get; set; }
|
|
public SpeedTestItem SpeedTestItem { get; set; }
|
|
public Mux4RayItem Mux4RayItem { get; set; }
|
|
public Mux4SboxItem Mux4SboxItem { get; set; }
|
|
public HysteriaItem HysteriaItem { get; set; }
|
|
public ClashUIItem ClashUIItem { get; set; }
|
|
public SystemProxyItem SystemProxyItem { get; set; }
|
|
public WebDavItem WebDavItem { get; set; }
|
|
public CheckUpdateItem CheckUpdateItem { get; set; }
|
|
public Fragment4RayItem? Fragment4RayItem { get; set; }
|
|
public List<InItem> Inbound { get; set; }
|
|
public List<KeyEventItem> GlobalHotkeys { get; set; }
|
|
public List<CoreTypeItem> CoreTypeItem { get; set; }
|
|
public SimpleDNSItem SimpleDNSItem { get; set; }
|
|
|
|
#endregion other entities
|
|
}
|