using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 2 items of the xAPI_Verbs of the context projectJupyter as public properties. /// public sealed class xAPI_Verbs_ProjectJupyter : xAPI_Verbs { /// /// Indicates, that an actor executed some programming context. Typically a Jupyter Notebook Code Cell. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/verbs/executed /// public readonly xAPI_Verb executed = new xAPI_Verb( context: "projectJupyter", key: "executed", names: new Dictionary { ["en-US"] = "executed", ["de-DE"] = "führte aus" }, descriptions: new Dictionary { ["en-US"] = "Indicates, that an actor executed some programming context. Typically a Jupyter Notebook Code Cell.", ["de-DE"] = "Signalisiert, dass ein Akteur ein Programmierkonstrukt ausführte. Typischerweise eine Jupyter Notebook Codezelle." }); /// /// Indicates, that an actor run some programming context. Typically a Jupyter Notebook Code Cell. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/projectJupyter/verbs/run /// public readonly xAPI_Verb run = new xAPI_Verb( context: "projectJupyter", key: "run", names: new Dictionary { ["en-US"] = "run", ["de-DE"] = "führte aus" }, descriptions: new Dictionary { ["en-US"] = "Indicates, that an actor run some programming context. Typically a Jupyter Notebook Code Cell.", ["de-DE"] = "Signalisiert, dass ein Akteur ein Programmierkonstrukt ausführte. Typischerweise eine Jupyter Notebook Codezelle." }); public xAPI_Verbs_ProjectJupyter() : base("projectJupyter") { } } }