RNThreadModule.cs 688 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
using ReactNative.Bridge;
using System;
using System.Collections.Generic;
using Windows.ApplicationModel.Core;
using Windows.UI.Core;

namespace Thread.RNThread
{
    /// <summary>
    /// A module that allows JS to share data.
    /// </summary>
    class RNThreadModule : NativeModuleBase
    {
        /// <summary>
        /// Instantiates the <see cref="RNThreadModule"/>.
        /// </summary>
        internal RNThreadModule()
        {

        }

        /// <summary>
        /// The name of the native module.
        /// </summary>
        public override string Name
        {
            get
            {
                return "RNThread";
            }
        }
    }
}