| 1 | namespace AgentForge.Data.Entities; |
| 2 | |
| 3 | public sealed class ForgeIdentityEntity |
| 4 | { |
| 5 | public string Id { get; set; } = ""; |
| 6 | |
| 7 | public string Provider { get; set; } = ""; |
| 8 | |
| 9 | public string SubjectId { get; set; } = ""; |
| 10 | |
| 11 | public string Login { get; set; } = ""; |
| 12 | |
| 13 | public string DisplayName { get; set; } = ""; |
| 14 | |
| 15 | public DateTimeOffset CreatedAt { get; set; } |
| 16 | |
| 17 | public DateTimeOffset LastLoginAt { get; set; } |
| 18 | } |
| 19 |