15 lines
334 B
C#
15 lines
334 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TextSender_API.Models;
|
|
|
|
public class Token
|
|
{
|
|
#region Properties
|
|
[JsonProperty("access_token")]
|
|
public string? AccessToken { get; set; }
|
|
[JsonProperty("issued")]
|
|
public DateTime? Issued { get; set; }
|
|
[JsonProperty("id")]
|
|
public string? UserId { get; set; }
|
|
#endregion
|
|
} |