namespace SharepointToolbox.Web.Core.Models; /// Held in ProtectedSessionStorage — never persisted to disk. 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; }