This commit is contained in:
2026-02-11 16:12:04 +03:00
parent e4c3d7afb1
commit 5581faf479
18 changed files with 650 additions and 408 deletions

View File

@@ -0,0 +1,8 @@
namespace MyCompany.MyProject.BackendApi.Models;
record RuntimeRequest
{
public string ClassName { get; set; } = string.Empty;
public string MethodName { get; set; } = string.Empty;
public object? Inputs { get; set; }
}