| 1 | namespace AgentForge.Data.Entities; |
| 2 | |
| 3 | public sealed class ForgeIssueCommentEntity |
| 4 | { |
| 5 | public string Id { get; set; } = ""; |
| 6 | |
| 7 | public string IssueId { get; set; } = ""; |
| 8 | |
| 9 | public string Body { get; set; } = ""; |
| 10 | |
| 11 | public string Author { get; set; } = ""; |
| 12 | |
| 13 | public DateTimeOffset CreatedAt { get; set; } |
| 14 | |
| 15 | public ForgeIssueEntity? Issue { get; set; } |
| 16 | } |
| 17 |