mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-15 19:52:06 +03:00
* Update Directory.Packages.props * Update CoreInfoManager.cs * Update CoreInfo.cs * Update UpdateService.cs * Update ResUI.fr.resx * Update ResUI.fr.resx * Update ResUI.fr.resx
24 lines
958 B
C#
24 lines
958 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? DownloadUrlLinuxLoong64 { 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?>();
|
|
}
|