using System.Collections.Generic; namespace xAPI.Registry { /// /// Version: 2.0.0 /// 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}"; } }