8 lines
157 B
C#
8 lines
157 B
C#
|
|
namespace MyCompany.MyProject.BackendApi.Models;
|
||
|
|
|
||
|
|
record RuntimeResponse
|
||
|
|
{
|
||
|
|
public object? Outputs { get; set; }
|
||
|
|
public string? Error { get; set; }
|
||
|
|
}
|