| 1 | using AgentForge.Models; |
| 2 | |
| 3 | namespace AgentForge.Data.Entities; |
| 4 | |
| 5 | public sealed class ForgeCiRunEntity |
| 6 | { |
| 7 | public string Id { get; set; } = ""; |
| 8 | |
| 9 | public string RepoId { get; set; } = ""; |
| 10 | |
| 11 | public int? MrNumber { get; set; } |
| 12 | |
| 13 | public string Commit { get; set; } = ""; |
| 14 | |
| 15 | public CiRunStatus Status { get; set; } = CiRunStatus.Pending; |
| 16 | |
| 17 | public string Url { get; set; } = ""; |
| 18 | |
| 19 | public DateTimeOffset CreatedAt { get; set; } |
| 20 | |
| 21 | public DateTimeOffset UpdatedAt { get; set; } |
| 22 | |
| 23 | public ForgeRepoEntity? Repo { get; set; } |
| 24 | } |
| 25 | |
View only · write via MCP/CIDE