using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FObjBase.Reflect
{
    public class Reflect_OBJ_INTERFACE
    {
        public const string asyncDelegate = "asyncDelegate";
        public const string asyncContext = "asyncContext";

        #region Push
        public const UInt16 PUSH_Event = 101;
        public const UInt16 PUSH_PropertyChanged = 102;
        #endregion
        #region CallFunction
        public const UInt16 CALL_GetAllProperties = 100;
        public const UInt16 CALL_SetProperty = 101;
        public const UInt16 CALL_MethodInvoke = 102;
        #endregion

        public class ReflectData
        {
            public string name;
            public JToken data;
        }
    }
}