add abstractions for controllers
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using TorchRemote.Models.Responses;
|
||||
namespace TorchRemote.Plugin.Abstractions.Controllers;
|
||||
|
||||
public interface IWorldsController
|
||||
{
|
||||
IEnumerable<Guid> Get();
|
||||
Guid GetSelected();
|
||||
WorldResponse GetWorld(Guid id);
|
||||
void Select(Guid id);
|
||||
}
|
Reference in New Issue
Block a user