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