mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-30 01:34:08 +00:00
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.
22 lines
901 B
C#
22 lines
901 B
C#
namespace ServiceLib.Models.CoreConfigs;
|
|
|
|
[Serializable]
|
|
public class CoreInfo
|
|
{
|
|
public ECoreType CoreType { get; set; }
|
|
public List<string>? CoreExes { get; set; }
|
|
public string? Arguments { get; set; }
|
|
public string? Url { get; set; }
|
|
public string? ReleaseApiUrl { get; set; }
|
|
public string? DownloadUrlWin64 { get; set; }
|
|
public string? DownloadUrlWinArm64 { get; set; }
|
|
public string? DownloadUrlLinux64 { get; set; }
|
|
public string? DownloadUrlLinuxArm64 { get; set; }
|
|
public string? DownloadUrlLinuxRiscV64 { get; set; }
|
|
public string? DownloadUrlOSX64 { get; set; }
|
|
public string? DownloadUrlOSXArm64 { get; set; }
|
|
public string? Match { get; set; }
|
|
public string? VersionArg { get; set; }
|
|
public bool AbsolutePath { get; set; }
|
|
public IDictionary<string, string?> Environment { get; set; } = new Dictionary<string, string?>();
|
|
}
|