9 lines
233 B
C#
9 lines
233 B
C#
|
|
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; }
|
||
|
|
}
|