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