Files
RemoteExec/RemoteExec.Shared/RemoteExecutionResult.cs
T
2025-12-19 18:16:08 +01:00

8 lines
162 B
C#

namespace RemoteExec.Shared;
public sealed class RemoteExecutionResult
{
public object? Result { get; set; }
public string? Exception { get; set; }
}