using ReactNative.Bridge; using System; using System.Collections.Generic; using Windows.ApplicationModel.Core; using Windows.UI.Core; namespace Voicebot.React.Native.RNVoicebotReactNative { /// /// A module that allows JS to share data. /// class RNVoicebotReactNativeModule : NativeModuleBase { /// /// Instantiates the . /// internal RNVoicebotReactNativeModule() { } /// /// The name of the native module. /// public override string Name { get { return "RNVoicebotReactNative"; } } } }