using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 2 items of the xAPI_Activities of the context gestures as public properties. /// public sealed class xAPI_Activities_Gestures : xAPI_Activities { /// /// Actors physical (left or right) hand. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/activities/hand /// public readonly xAPI_Activity hand = new xAPI_Activity( context: "gestures", key: "hand", names: new Dictionary { ["en-US"] = "hand", ["de-DE"] = "Hand" }, descriptions: new Dictionary { ["en-US"] = "Actors physical (left or right) hand.", ["de-DE"] = "Physikalische (linke oder rechte) Hand vom Akteur." }); /// /// Actors physical head. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/activities/head /// public readonly xAPI_Activity head = new xAPI_Activity( context: "gestures", key: "head", names: new Dictionary { ["en-US"] = "head", ["de-DE"] = "Kopf" }, descriptions: new Dictionary { ["en-US"] = "Actors physical head.", ["de-DE"] = "Physikalische Kopf vom Akteur." }); public xAPI_Activities_Gestures() : base("gestures") { } } }