borepin/FabAccessAPI/ServerData.cs

14 lines
272 B
C#
Raw Permalink Normal View History

2022-05-10 13:35:23 +02:00
using System;
using System.Collections.Generic;
namespace FabAccessAPI
{
2023-01-25 01:48:54 +01:00
public class ServerData
2022-05-10 13:35:23 +02:00
{
2022-05-12 23:08:37 +02:00
public Schema.Version APIVersion;
2022-05-10 13:35:23 +02:00
public string ServerName;
public string ServerRelease;
public List<string> Mechanisms;
}
}