Files
RemoteExec/src/RemoteExec.Shared/Models/Docker/ContainerExecutionResponse.cs
T
2025-12-30 13:32:45 +01:00

9 lines
209 B
C#

namespace RemoteExec.Shared.Models.Docker;
public class ContainerExecutionResponse
{
public bool Success { get; set; }
public object? Result { get; set; }
public string? Exception { get; set; }
}