Move code to src folder

This commit is contained in:
Stone_Red
2025-12-30 13:32:45 +01:00
parent b9afb74d13
commit 579ab691ad
59 changed files with 0 additions and 45 deletions
@@ -0,0 +1,8 @@
namespace RemoteExec.Shared.Models.Docker;
public class ContainerExecutionResponse
{
public bool Success { get; set; }
public object? Result { get; set; }
public string? Exception { get; set; }
}