mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
Add docker execution environment
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user