Adding token support

This commit is contained in:
kdeng00
2023-09-29 19:33:37 -04:00
parent 36e3722a01
commit 616bd97b64
3 changed files with 40 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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; }
#endregion
}