7 lines
89 B
C#
7 lines
89 B
C#
namespace Client;
|
|
|
|
interface IClient
|
|
{
|
|
public void Start();
|
|
public void Stop();
|
|
} |