Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FacebookUserDTO.cs

using Newtonsoft.Json;

namespace Nop.Plugin.ExternalAuth.Facebook.Models;

public record FacebookUserDTO
{
    [JsonProperty("algorithm")]
    public string Algorithm { get; set; }

    [JsonProperty("expires")]
    public int Expires { get; set; }

    [JsonProperty("issued_at")]
    public int IssuedAt { get; set; }

    [JsonProperty("user_id")]
    public string UserId { get; set; }
}