using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides all extensions of the context systemControl of type context as public properties. /// public sealed class xAPI_Extensions_Context_SystemControl : xAPI_Extensions_Context { public xAPI_Extensions_Context_SystemControl() : base("systemControl") { } /// /// The framerate is the amount of frames (images) per seconds, which was generated at captured moment in the recorded period of time. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/systemControl/extensions/context/fps /// public xAPI_Extensions_Context_SystemControl fps(object value) { Add(new xAPI_Extension( context: Context, extensionType: ExtensionType, key: "fps", names: new Dictionary { ["en-US"] = "Frames per Second", ["de-DE"] = "Bilder pro Sekunde" }, descriptions: new Dictionary { ["en-US"] = "The framerate is the amount of frames (images) per seconds, which was generated at captured moment in the recorded period of time.", ["de-DE"] = "Die Bildfrequenz ist die Anzahl an Einzelbildern pro Sekunde, die zum aufgenommenen Zeitpunkt bzw. während der aufgenommenen Zeitspanne vorgelegen hat." }), value); return this; } } }