Modified ExpiresIn property to ExpiresAt

This commit is contained in:
Tom 2024-10-22 07:44:20 +00:00
parent 65522567a5
commit 23d407b760

View File

@ -1,8 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HermesSocketLibrary.Socket.Data namespace HermesSocketLibrary.Socket.Data
{ {
public class Connection public class Connection
@ -13,7 +8,7 @@ namespace HermesSocketLibrary.Socket.Data
public string AccessToken { get; set; } public string AccessToken { get; set; }
public string GrantType { get; set; } public string GrantType { get; set; }
public string Scope { get; set; } public string Scope { get; set; }
public DateTime ExpiresIn { get; set; } public DateTime ExpiresAt { get; set; }
public bool Default { get; set; } public bool Default { get; set; }
} }
} }