Files
NetworkTest/Client/IClient.cs
Пытков Роман bbe5a75dba Init
2025-09-17 00:44:21 +03:00

7 lines
89 B
C#

namespace Client;
interface IClient
{
public void Start();
public void Stop();
}