2024-08-10 15:33:33 -04:00
|
|
|
namespace HermesSocketLibrary.Socket.Data
|
|
|
|
{
|
|
|
|
public class Connection
|
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string ClientId { get; set; }
|
|
|
|
public string AccessToken { get; set; }
|
|
|
|
public string GrantType { get; set; }
|
|
|
|
public string Scope { get; set; }
|
2024-10-22 03:44:20 -04:00
|
|
|
public DateTime ExpiresAt { get; set; }
|
2024-08-10 15:33:33 -04:00
|
|
|
public bool Default { get; set; }
|
|
|
|
}
|
|
|
|
}
|