mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-27 13:26:59 +00:00
56 lines
No EOL
1.9 KiB
C#
56 lines
No EOL
1.9 KiB
C#
namespace ServiceLib.Models
|
|
{
|
|
/// <summary>
|
|
/// 本软件配置文件实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Config
|
|
{
|
|
#region property
|
|
|
|
public string IndexId { get; set; }
|
|
public string SubIndexId { get; set; }
|
|
|
|
public ECoreType RunningCoreType { get; set; }
|
|
|
|
public bool IsRunningCore(ECoreType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case ECoreType.Xray when RunningCoreType is ECoreType.Xray or ECoreType.v2fly or ECoreType.v2fly_v5:
|
|
case ECoreType.sing_box when RunningCoreType is ECoreType.sing_box or ECoreType.mihomo:
|
|
return true;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
#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 List<InItem> Inbound { get; set; }
|
|
public List<KeyEventItem> GlobalHotkeys { get; set; }
|
|
public List<CoreTypeItem> CoreTypeItem { get; set; }
|
|
|
|
#endregion other entities
|
|
}
|
|
} |