/* * SPDX-License-Identifier: AGPL-3.0-or-later * Copyright (C) 2025 Sergej Görzen * This file is part of xAPI4Unity. */ using System.Collections.Generic; namespace xAPI.Registry { /// /// Version: 2.2.3 /// public sealed class xAPI_Extension : xAPI_Definition { public readonly string extensionType; public xAPI_Extension(string context, string extensionType, string key, Dictionary names, Dictionary descriptions) : base(context, key, names, descriptions) { this.extensionType = extensionType; } public override string GetPath() => $"/{Context}/extensions/{extensionType}/{Key}"; } }