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.

BridgeObject.cs 480 B

123456789101112131415161718192021
  1. namespace Shadowsocks.Interop.V2Ray.Reverse
  2. {
  3. public class BridgeObject
  4. {
  5. /// <summary>
  6. /// Gets or sets the inbound tag for the bridge.
  7. /// </summary>
  8. public string Tag { get; set; }
  9. /// <summary>
  10. /// Gets or sets the domain name for the bridge.
  11. /// Can be omitted.
  12. /// </summary>
  13. public string? Domain { get; set; }
  14. public BridgeObject()
  15. {
  16. Tag = "";
  17. }
  18. }
  19. }