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