mirror of
https://github.com/2dust/v2rayN.git
synced 2026-07-31 04:12:04 +03:00
30 lines
827 B
C#
30 lines
827 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 coreUrl { get; set; }
|
|
|
|
public string coreReleaseApiUrl { get; set; }
|
|
|
|
public string coreDownloadUrl32 { get; set; }
|
|
|
|
public string coreDownloadUrl64 { get; set; }
|
|
|
|
public string coreDownloadUrlArm64 { get; set; }
|
|
public string? coreDownloadUrlLinux32 { get; set; }
|
|
public string? coreDownloadUrlLinux64 { get; set; }
|
|
public string? coreDownloadUrlLinuxArm64 { get; set; }
|
|
|
|
public string match { get; set; }
|
|
public string versionArg { get; set; }
|
|
|
|
public bool redirectInfo { get; set; }
|
|
}
|
|
} |