초기 커밋.

This commit is contained in:
2026-02-03 11:33:58 +09:00
parent 90b3415a1f
commit b6b823b1c4
71 changed files with 4794 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Inno.Communication.TCP
{
public class TcpConnectionItem
{
public string Host { get; set; }
public int Port { get; set; }
public TcpConnectionItem(string host, int port) { Host = host; Port = port; }
}
}