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