using System.Collections.Generic;
namespace Shadowsocks.Interop.V2Ray.Routing
{
public class BalancerObject
{
///
/// Gets or sets the outbound tag for the load balancer.
///
public string Tag { get; set; }
///
/// Gets or sets a list of outbound tags
/// to include in the load balancer.
///
public List Selector { get; set; }
public BalancerObject()
{
Tag = "";
Selector = new();
}
}
}