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.

OutboundConfigurationObject.cs 411 B

12345678910111213141516
  1. namespace Shadowsocks.Interop.V2Ray.Protocols.Freedom
  2. {
  3. public class OutboundConfigurationObject
  4. {
  5. public string DomainStrategy { get; set; }
  6. public string Redirect { get; set; }
  7. public int UserLevel { get; set; }
  8. public OutboundConfigurationObject()
  9. {
  10. DomainStrategy = "AsIs";
  11. Redirect = "";
  12. UserLevel = 0;
  13. }
  14. }
  15. }