using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context eyeTracking of type activity as public properties. /// public sealed class xAPI_Extensions_Activity_EyeTracking : xAPI_Extensions_Activity { public xAPI_Extensions_Activity_EyeTracking() : base("eyeTracking") { } /// /// Organ of the visual system. Actors physical (left or right) eye. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/eyeTracking/extensions/activity/eye /// public xAPI_Extensions_Activity_EyeTracking eye(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "eye", names: new Dictionary { ["en-US"] = "eye", ["de-DE"] = "Auge" }, descriptions: new Dictionary { ["en-US"] = "Organ of the visual system. Actors physical (left or right) eye.", ["de-DE"] = "Sinnesorgan zur Wahrnehmung von Lichtreizen, in diesem Kontext das physikalisches Auge des Agierenden (links oder rechts)." }), value); return this; } } }