1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System.Collections.Generic;
- namespace ET.Client
- {
- public class ServerInfo
- {
- public string ShowName;
- public string Ip;
- public int Port;
- public string HostStr { get { return Ip + ":" + Port; } }
- public static List<ServerInfo> ServerList;
- static ServerInfo()
- {
- ServerList = new(){
-
-
-
-
-
- new ServerInfo{
- ShowName = "外网[47.98.144.16:30300]",
- Ip = "47.98.144.16",
- Port = 30300
- },
- new ServerInfo{
- ShowName = "本地[localhost:30300]",
- Ip = "127.0.0.1",
- Port = 30300
- },
-
-
-
-
-
-
-
-
-
-
- };
- }
- }
- }
|