mirror of
https://git.battle-of-pip.de/root/vpr-mitarbeiterverwaltung.git
synced 2025-06-20 15:53:16 +02:00
10 lines
211 B
C#
10 lines
211 B
C#
using System.Net.Sockets;
|
|
using DX86;
|
|
|
|
namespace Server.Commands;
|
|
|
|
public interface ICommand
|
|
{
|
|
string Executor { get; }
|
|
public string Exec(string[] args, TcpClient? client, TcpServer? clientSocket);
|
|
} |