Forge
csharp3407750f
1namespace AgentForge.Data.Entities;
2
3public sealed class ForgeCiStepRunEntity
4{
5 public string Id { get; set; } = "";
6
7 public string RunId { get; set; } = "";
8
9 public string NodeId { get; set; } = "";
10
11 public string TaskId { get; set; } = "";
12
13 public string DisplayName { get; set; } = "";
14
15 public int OrderIndex { get; set; }
16
17 public string Status { get; set; } = "pending";
18
19 public string LogText { get; set; } = "";
20
21 public DateTimeOffset? StartedAt { get; set; }
22
23 public DateTimeOffset? FinishedAt { get; set; }
24
25 public ForgeCiPipelineRunEntity? Run { get; set; }
26}
27
View only · write via MCP/CIDE