using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 2 items of the xAPI_Verbs of the context assistanceSystem as public properties. /// public sealed class xAPI_Verbs_AssistanceSystem : xAPI_Verbs { /// /// Indicates that the actor did not need something. For instance, a person did not need help. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/assistanceSystem/verbs/notNeeded /// public readonly xAPI_Verb notNeeded = new xAPI_Verb( context: "assistanceSystem", key: "notNeeded", names: new Dictionary { ["en-US"] = "not needed", ["de-DE"] = "nicht benötigt" }, descriptions: new Dictionary { ["en-US"] = "Indicates that the actor did not need something. For instance, a person did not need help.", ["de-DE"] = "Signalisiert, dass ein Agierendem etwas nicht benötigt hat. Zum Beispiel: Eine Person hat eine Hilfe nicht benötigt." }); /// /// Indicates that the actor was given something. For instance, a person can be given a letter /// URI: https://xapi.elearn.rwth-aachen.de/definitions/assistanceSystem/verbs/wasGiven /// public readonly xAPI_Verb wasGiven = new xAPI_Verb( context: "assistanceSystem", key: "wasGiven", names: new Dictionary { ["en-US"] = "was given", ["de-DE"] = "wurde gegeben" }, descriptions: new Dictionary { ["en-US"] = "Indicates that the actor was given something. For instance, a person can be given a letter", ["de-DE"] = "Signalisiert, dass einem Agierendem etwas gegeben wurde. Zum Beispiel: Einer Person wurde ein Brief gegeben." }); public xAPI_Verbs_AssistanceSystem() : base("assistanceSystem") { } } }