mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
14 lines
269 B
C#
14 lines
269 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FabAccessAPI
|
|
{
|
|
public class ConnectionInfo
|
|
{
|
|
public Version APIVersion;
|
|
public string ServerName;
|
|
public string ServerRelease;
|
|
public List<string> Mechanisms;
|
|
}
|
|
}
|