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.

Server.cs 425 B

10 years ago
1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using System.Diagnostics;
  6. using SimpleJson;
  7. namespace Shadowsocks.Model
  8. {
  9. [Serializable]
  10. public class Server
  11. {
  12. public string server;
  13. public int server_port;
  14. public int local_port;
  15. public string password;
  16. public string method;
  17. public string remarks;
  18. }
  19. }