namespace Shadowsocks.Interop.V2Ray.Transport { public class DomainSocketObject { /// /// Gets or sets the path to the unix domain socket file. /// public string Path { get; set; } /// /// Gets or sets whether the domain socket is abstract. /// Defaults to false. /// public bool Abstract { get; set; } /// /// Gets or sets whether padding is used. /// Defaults to false. /// public bool Padding { get; set; } public DomainSocketObject() { Path = ""; Abstract = false; Padding = false; } } }