18 lines
522 B
C#
18 lines
522 B
C#
using TouchSocket.Core;
|
|
using TouchSocket.Dmtp;
|
|
using TouchSocket.Dmtp.FileTransfer;
|
|
|
|
namespace Net;
|
|
|
|
public static class NetHelper
|
|
{
|
|
public static string IP = "127.0.0.1";
|
|
public static int Port = 7789;
|
|
|
|
public static string ServerRootPath = "E:\\zRoot\\S";
|
|
//public static string ServerSaveRootPath = $"{ServerRootPath}\\Save\\";
|
|
public static string ClientRootPath = "E:\\zRoot\\C";
|
|
public static string ClientSaveRootPath = $"{ClientRootPath}\\Save\\";
|
|
|
|
public static bool IsConnected;
|
|
} |