mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-27 17:28:01 +03:00
* Create package-rhel-riscv.sh * Update build-linux.yml * Update UpdateService.cs * Update CoreInfo.cs * Add RiscV64 download URLs for various platforms * Update build-linux.yml * Update ResUI.fr.resx * Update ResUI.fr.resx * Update ResUI.fr.resx * Update proxy_set_linux_sh --------- Co-authored-by: xujie86 <167618598+xujie86@users.noreply.github.com>
23 lines
889 B
C#
23 lines
889 B
C#
namespace ServiceLib.Models;
|
|
|
|
[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?>();
|
|
}
|