This commit is contained in:
2026-06-02 15:46:13 +02:00
25 changed files with 951 additions and 215 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace SharepointToolbox.Web.Core.Models;
public enum AuthProvider
{
/// <summary>Microsoft Entra (OIDC) — auto-provisioned on login.</summary>
Entra = 0,
/// <summary>Local password account — created by an Admin.</summary>
Local = 1
}