namespace RemoteExec.Shared.Models; /// /// Represents a task item in the execution stream, combining a task ID with its execution request. /// public class TaskItem { /// /// Gets or sets the unique identifier for this task. /// public Guid TaskId { get; set; } /// /// Gets or sets the execution request details. /// public required RemoteExecutionRequest Request { get; set; } }