This commit is contained in:
Пытков Роман
2025-09-17 00:44:21 +03:00
parent 1f0e7c285c
commit bbe5a75dba
15 changed files with 783 additions and 0 deletions

8
Server/IServer.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace NetworkTest;
interface IServer
{
public void Start();
public void Stop();
}