18 lines
395 B
C#
18 lines
395 B
C#
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; }
|
|
} |