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