LANCommander/LANCommander.Server/Hubs/Server.cs

29 lines
656 B
C#
Raw Permalink Normal View History

namespace LANCommander.Server.Hubs;
public partial class RpcHub
{
public async Task Server_GetStatusAsync(Guid serverId)
{
throw new NotImplementedException();
}
public async Task Server_UpdateStatusAsync(Guid serverId)
{
throw new NotImplementedException();
}
public async Task Server_StartAsync(Guid serverId)
{
throw new NotImplementedException();
}
public async Task Server_StopAsync(Guid serverId)
{
throw new NotImplementedException();
}
public async Task Server_LogAsync(Guid serverId, string message)
{
throw new NotImplementedException();
}
}