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