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