mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 00:56:17 +02:00
9 lines
209 B
C#
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; }
|
|
}
|