12 lines
457 B
C#
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;
|
|
}
|