Initial commit

This commit is contained in:
2026-06-02 10:51:14 +02:00
committed by kawa
commit d19092c84e
182 changed files with 13757 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace SharepointToolbox.Web.Core.Models;
/// <summary>Held in ProtectedSessionStorage — never persisted to disk.</summary>
public class SessionTokens
{
public string RefreshToken { get; set; } = string.Empty;
public string TenantId { get; set; } = string.Empty;
public string ClientId { get; set; } = string.Empty;
public string SpHost { get; set; } = string.Empty;
public string UserPrincipalName { get; set; } = string.Empty;
}