mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api-cs.git
synced 2025-03-12 14:51:42 +01:00
14 lines
272 B
C#
14 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FabAccessAPI
|
|
{
|
|
public class ServerData
|
|
{
|
|
public Schema.Version APIVersion;
|
|
public string ServerName;
|
|
public string ServerRelease;
|
|
public List<string> Mechanisms;
|
|
}
|
|
}
|