namespace Shadowsocks.Interop.V2Ray.Reverse
{
public class BridgeObject
{
///
/// Gets or sets the inbound tag for the bridge.
///
public string Tag { get; set; }
///
/// Gets or sets the domain name for the bridge.
/// Can be omitted.
///
public string? Domain { get; set; }
public BridgeObject()
{
Tag = "";
}
}
}