/* * 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_Verb : xAPI_Definition { public xAPI_Verb(string context, string key, Dictionary names, Dictionary descriptions) : base(context, key, names, descriptions) { } public override string GetPath() => $"/{Context}/verbs/{Key}"; } }