Added & modified several message types.
This commit is contained in:
19
Socket/Data/Connection.cs
Normal file
19
Socket/Data/Connection.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
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; }
|
||||
public DateTime ExpiresIn { get; set; }
|
||||
public bool Default { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user