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

8 lines
99 B
C#

namespace NetworkTest;
interface IServer
{
public void Start();
public void Stop();
}