namespace RemoteExec.Shared.Models;
///
/// Represents the result of a remote method execution.
///
public sealed class RemoteExecutionResult
{
///
/// Gets or sets the return value of the executed method, or null if the method returns void.
///
public object? Result { get; set; }
///
/// Gets or sets the exception message if the execution failed, or null if successful.
///
public string? Exception { get; set; }
}