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

7
Client/IClient.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace Client;
interface IClient
{
public void Start();
public void Stop();
}