hermes-socket-library/Socket/Data/Connection.cs

14 lines
438 B
C#
Raw Normal View History

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 ExpiresAt { get; set; }
public bool Default { get; set; }
}
}