namespace Glamourer.Api.Api;
/// Basic API functions.
public interface IGlamourerApiBase
{
///
/// Get the current API version of the Glamourer available in this installation.
/// Major version changes indicate incompatibilities, minor version changes are backward-compatible additions.
///
public (int Major, int Minor) ApiVersion { get; }
}