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