mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 23:31:48 +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;
|
|||
|
}
|
|||
|
}
|