Add docker execution environment

This commit is contained in:
Stone_Red
2025-12-27 00:08:01 +01:00
parent 252aca98b4
commit bf1b5506c0
31 changed files with 848 additions and 25 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace RemoteExec.Shared.Models;
/// <summary>
/// Represents a task item in the execution stream, combining a task ID with its execution request.
/// </summary>
public class TaskItem
{
/// <summary>
/// Gets or sets the unique identifier for this task.
/// </summary>
public Guid TaskId { get; set; }
/// <summary>
/// Gets or sets the execution request details.
/// </summary>
public required RemoteExecutionRequest Request { get; set; }
}