using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 4 items of the xAPI_Activities of the context 360tours as public properties. /// public sealed class xAPI_Activities_360tours : xAPI_Activities { /// /// Interactive area within a 360° mediapage that triggers an action or displays additional information. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/360tours/activities/hotspot /// public readonly xAPI_Activity hotspot = new xAPI_Activity( context: "360tours", key: "hotspot", names: new Dictionary { ["en-US"] = "hotspot", ["de-DE"] = "Hotspot" }, descriptions: new Dictionary { ["en-US"] = "Interactive area within a 360° mediapage that triggers an action or displays additional information.", ["de-DE"] = "Interaktiver Bereich innerhalb einer 360° Medienseite, der eine Aktion auslöst oder zusätzliche Informationen anzeigt." }); /// /// A page displaying a single 360° image or video, allowing users to explore the content interactively. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/360tours/activities/mediapage /// public readonly xAPI_Activity mediapage = new xAPI_Activity( context: "360tours", key: "mediapage", names: new Dictionary { ["en-US"] = "media page", ["de-DE"] = "Medienseite" }, descriptions: new Dictionary { ["en-US"] = "A page displaying a single 360° image or video, allowing users to explore the content interactively.", ["de-DE"] = "Eine Seite, die ein einzelnes 360° Bild oder Video anzeigt und es Benutzern ermöglicht, den Inhalt interaktiv zu erkunden." }); /// /// An interactive tour comprised of 360° images and videos. A tour may also include media pages and hotspots. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/360tours/activities/tour /// public readonly xAPI_Activity tour = new xAPI_Activity( context: "360tours", key: "tour", names: new Dictionary { ["en-US"] = "360° virtual tour", ["de-DE"] = "360° Virtuelle Tour" }, descriptions: new Dictionary { ["en-US"] = "An interactive tour comprised of 360° images and videos. A tour may also include media pages and hotspots.", ["de-DE"] = "Eine interaktive Tour bestehend aus 360° Bildern und Videos. Eine Tour kann zusätzlich Medienseiten und Hotspots enthalten." }); /// /// A personal account for accessing a 360° tours platform. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/360tours/activities/userAccount /// public readonly xAPI_Activity userAccount = new xAPI_Activity( context: "360tours", key: "userAccount", names: new Dictionary { ["en-US"] = "user account", ["de-DE"] = "Nutzeraccount" }, descriptions: new Dictionary { ["en-US"] = "A personal account for accessing a 360° tours platform.", ["de-DE"] = "Ein persönliches Profil für den Zugriff auf eine 360° Touren Plattform." }); public xAPI_Activities_360tours() : base("360tours") { } } }