Forge
csharp3407750f
1using AgentForge.Contracts;
2using AgentForge.Models;
3
4namespace AgentForge.Data.Entities;
5
6public sealed class ForgeIssueEntity
7{
8 public string Id { get; set; } = "";
9
10 public string RepoId { get; set; } = "";
11
12 public int Number { get; set; }
13
14 public string Title { get; set; } = "";
15
16 public string Body { get; set; } = "";
17
18 public IssueStatus Status { get; set; } = IssueStatus.Open;
19
20 public List<CodeAnchor> Anchors { get; set; } = [];
21
22 public string CreatedBy { get; set; } = "";
23
24 public DateTimeOffset CreatedAt { get; set; }
25
26 public ForgeRepoEntity? Repo { get; set; }
27
28 public ICollection<ForgeIssueCommentEntity> Comments { get; set; } = [];
29}
30
View only · write via MCP/CIDE