v2rayN/v2rayN/ServiceLib/Models/CoreInfo.cs

21 lines
805 B
C#
Raw Normal View History

2024-08-19 10:15:54 +00:00
namespace ServiceLib.Models
2022-03-28 10:54:05 +00:00
{
[Serializable]
public class CoreInfo
{
2024-10-07 12:10:00 +00:00
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; }
2024-11-25 12:31:12 +00:00
public string? DownloadUrlOSX64 { get; set; }
public string? DownloadUrlOSXArm64 { get; set; }
2024-10-07 12:10:00 +00:00
public string? Match { get; set; }
public string? VersionArg { get; set; }
public bool RedirectInfo { get; set; }
2022-03-28 10:54:05 +00:00
}
2023-04-14 12:49:36 +00:00
}