mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
8 lines
162 B
C#
8 lines
162 B
C#
namespace RemoteExec.Shared;
|
|
|
|
public sealed class RemoteExecutionResult
|
|
{
|
|
public object? Result { get; set; }
|
|
public string? Exception { get; set; }
|
|
}
|