| 1 | namespace AgentForge.Data.Entities; |
| 2 | |
| 3 | public sealed class ForgeCiDefinitionEntity |
| 4 | { |
| 5 | public string Id { get; set; } = ""; |
| 6 | |
| 7 | public string RepoId { get; set; } = ""; |
| 8 | |
| 9 | public string Name { get; set; } = ""; |
| 10 | |
| 11 | public string BodyJson { get; set; } = ""; |
| 12 | |
| 13 | public DateTimeOffset CreatedAt { get; set; } |
| 14 | |
| 15 | public DateTimeOffset UpdatedAt { get; set; } |
| 16 | |
| 17 | public string CreatedBy { get; set; } = ""; |
| 18 | |
| 19 | public ForgeRepoEntity? Repo { get; set; } |
| 20 | } |
| 21 |