| 1 | using AgentForge.Models; |
| 2 | |
| 3 | namespace AgentForge.Data.Entities; |
| 4 | |
| 5 | public sealed class ForgeOrgEntity |
| 6 | { |
| 7 | public string Id { get; set; } = ""; |
| 8 | |
| 9 | public string Slug { get; set; } = ""; |
| 10 | |
| 11 | public string DisplayName { get; set; } = ""; |
| 12 | |
| 13 | public string Description { get; set; } = ""; |
| 14 | |
| 15 | public RepoVisibility DefaultVisibility { get; set; } = RepoVisibility.Private; |
| 16 | |
| 17 | public DateTimeOffset CreatedAt { get; set; } |
| 18 | |
| 19 | public ICollection<ForgeOrgMemberEntity> Members { get; set; } = []; |
| 20 | |
| 21 | public ICollection<ForgeRepoGroupEntity> RepoGroups { get; set; } = []; |
| 22 | |
| 23 | public ICollection<ForgeRepoEntity> Repos { get; set; } = []; |
| 24 | } |
| 25 | |
View only · write via MCP/CIDE