Skip to content

Instantly share code, notes, and snippets.

@thivi
Created April 22, 2023 11:19
Show Gist options
  • Save thivi/9770f2769ee2938aa1ce8e890c56a7ef to your computer and use it in GitHub Desktop.
Save thivi/9770f2769ee2938aa1ce8e890c56a7ef to your computer and use it in GitHub Desktop.
using System;
namespace asp.net_core_boilerplte.Models
{
public class Secure
{
public IEnumerable<System.Security.Claims.Claim>? Claims { get; set; }
public string? AccessToken { get; set; }
public string? IdToken { get; set; }
public string? RefreshToken { get; set; }
public string? DisplayName { get; set; }
public string? ProfileURL { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment