Files
SharepointToolbox-Web/Core/Models/SessionTokens.cs
T
2026-06-02 10:56:03 +02:00

12 lines
457 B
C#

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;
}