You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

FallbackObject.cs 484 B

12345678910111213141516171819202122
  1. namespace Shadowsocks.Interop.V2Ray.Protocols.Trojan
  2. {
  3. public class FallbackObject
  4. {
  5. public string? Alpn { get; set; }
  6. public string? Path { get; set; }
  7. public object Dest { get; set; }
  8. public int? Xver { get; set; }
  9. public FallbackObject()
  10. {
  11. Dest = 0;
  12. }
  13. public static FallbackObject Default => new()
  14. {
  15. Alpn = "",
  16. Path = "",
  17. Xver = 0,
  18. };
  19. }
  20. }