namespace FlatRender.IdentitySvc.Domain.Entities; /// Admin-editable external OAuth provider credentials (Google, …). public class OAuthConfig { public string Provider { get; set; } = default!; // "google" public string? ClientId { get; set; } public string? ClientSecret { get; set; } public string? RedirectUri { get; set; } public bool Enabled { get; set; } public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }