mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
update interactions to allow building custom forms
This commit is contained in:
10
SharedLibraryCore/Interfaces/IRemoteCommandService.cs
Normal file
10
SharedLibraryCore/Interfaces/IRemoteCommandService.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SharedLibraryCore.Dtos;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces;
|
||||
|
||||
public interface IRemoteCommandService
|
||||
{
|
||||
Task<IEnumerable<CommandResponseInfo>> Execute(int originId, int? targetId, string command, IEnumerable<string> arguments, Server server);
|
||||
}
|
Reference in New Issue
Block a user