Initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user