14 lines
272 B
C#
Raw Normal View History

2024-03-11 22:38:56 +01:00
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;
}
}