-
Notifications
You must be signed in to change notification settings - Fork 12.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,44 @@ | ||
namespace v2rayN.Mode | ||
using System.Text.Json.Serialization; | ||
|
||
namespace v2rayN.Mode | ||
{ | ||
/// <summary> | ||
/// https://github.com/2dust/v2rayN/wiki/ | ||
/// </summary> | ||
[Serializable] | ||
internal class VmessQRCode | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string v { get; set; } = string.Empty; | ||
[JsonNumberHandling(JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.WriteAsString)] | ||
public int v { get; set; } = 2; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string ps { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string add { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string port { get; set; } = string.Empty; | ||
[JsonNumberHandling(JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.WriteAsString)] | ||
public int port { get; set; } = 0; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string id { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string aid { get; set; } = string.Empty; | ||
[JsonNumberHandling(JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.WriteAsString)] | ||
public int aid { get; set; } = 0; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string scy { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string net { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string type { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string host { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string path { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// TLS | ||
/// </summary> | ||
public string tls { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// TLS SNI | ||
/// </summary> | ||
public string sni { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// TLS alpn | ||
/// </summary> | ||
public string alpn { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// TLS fingerprint | ||
/// </summary> | ||
public string fp { get; set; } = string.Empty; | ||
} | ||
} |