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