| 1 | namespace AgentForge.Data.Entities; |
| 2 | |
| 3 | public sealed class ForgeOAuthStateEntity |
| 4 | { |
| 5 | public string Id { get; set; } = ""; |
| 6 | |
| 7 | public string State { get; set; } = ""; |
| 8 | |
| 9 | public string Provider { get; set; } = ""; |
| 10 | |
| 11 | public string RedirectUri { get; set; } = ""; |
| 12 | |
| 13 | public string? CodeChallenge { get; set; } |
| 14 | |
| 15 | public string? CodeChallengeMethod { get; set; } |
| 16 | |
| 17 | public string Scopes { get; set; } = ""; |
| 18 | |
| 19 | public DateTimeOffset ExpiresAt { get; set; } |
| 20 | |
| 21 | public DateTimeOffset CreatedAt { get; set; } |
| 22 | } |
| 23 | |
View only · write via MCP/CIDE