From 1a26f6e4918e7c71fac411815ce8c43ef4f7ded8 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Thu, 28 Apr 2022 14:11:00 +0200 Subject: [PATCH] Revert expires_in type + fix syntax error --- TestTokenCreator/Models/TokenModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestTokenCreator/Models/TokenModel.cs b/TestTokenCreator/Models/TokenModel.cs index 9f46427..0fc855c 100644 --- a/TestTokenCreator/Models/TokenModel.cs +++ b/TestTokenCreator/Models/TokenModel.cs @@ -6,7 +6,7 @@ public string token_type { get; set; } - public int expire_in { get; set; } + public string expires_in { get; set; } public string refresh_token { get; set; } }