mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 07:44:47 +03:00
8090799ccc
Move many model classes into new sub-namespaces (ServiceLib.Models.CoreConfigs, ServiceLib.Models.Configs, ServiceLib.Models.Dto, ServiceLib.Models.Entities). Update GlobalUsings in ServiceLib, v2rayN.Desktop, v2rayN and add a tests GlobalUsings file to reference the new namespaces. Adjust static using directives in ClashApiManager and ClashProxiesViewModel to use ServiceLib.Models.Dto. This is a reorganization/rename of files and namespaces with no functional changes.
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
namespace ServiceLib.Models.Configs;
|
|
|
|
[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
|
|
}
|