From 23d407b760982c36fead7e0497fd1ccf7057ae9b Mon Sep 17 00:00:00 2001 From: Tom Date: Tue, 22 Oct 2024 07:44:20 +0000 Subject: [PATCH] Modified ExpiresIn property to ExpiresAt --- Socket/Data/Connection.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Socket/Data/Connection.cs b/Socket/Data/Connection.cs index 7942c7e..e91e93a 100644 --- a/Socket/Data/Connection.cs +++ b/Socket/Data/Connection.cs @@ -1,8 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - namespace HermesSocketLibrary.Socket.Data { public class Connection @@ -13,7 +8,7 @@ namespace HermesSocketLibrary.Socket.Data public string AccessToken { get; set; } public string GrantType { get; set; } public string Scope { get; set; } - public DateTime ExpiresIn { get; set; } + public DateTime ExpiresAt { get; set; } public bool Default { get; set; } } } \ No newline at end of file