This commit is contained in:
2026-03-19 13:14:53 +02:00
parent 9ce8e190a2
commit 7fde404b5a
10 changed files with 167 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
namespace VisionAsist.SDK;
public interface IModule
{
string Name { get; }
string[] GetCommands();
object Execute(string command, object[] args);
}

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>