| 1 | namespace AgentForge.Plugin.Ci.Data; |
| 2 | |
| 3 | public sealed record ForgeCiPipelineRunRecord( |
| 4 | string Id, |
| 5 | string RepoId, |
| 6 | string DefinitionName, |
| 7 | string Ref, |
| 8 | string Commit, |
| 9 | int? MrNumber, |
| 10 | string Status, |
| 11 | string QueuedBy, |
| 12 | DateTimeOffset CreatedAt, |
| 13 | DateTimeOffset UpdatedAt, |
| 14 | DateTimeOffset? StartedAt, |
| 15 | DateTimeOffset? FinishedAt); |
| 16 | |
| 17 | public sealed record ForgeCiStepRunRecord( |
| 18 | string Id, |
| 19 | string RunId, |
| 20 | string NodeId, |
| 21 | string TaskId, |
| 22 | string DisplayName, |
| 23 | int OrderIndex, |
| 24 | string Status, |
| 25 | string LogText, |
| 26 | DateTimeOffset? StartedAt, |
| 27 | DateTimeOffset? FinishedAt); |
| 28 |