using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.OBJComponents.OBJ_INTERFACE { public class SYNCPROP_OBJ_INTERFACE { #region Set #endregion #region Push /// /// 推送 /// reponse: Dictionary> /// public const UInt16 PUSH_DATA = 5; #endregion #region Call /// /// 获取全部数据 /// request: null /// reponse: Dictionary> /// public const UInt16 CALL_GET_ALL_DATA = 1; /// /// 获取某个obj /// request: string /// reponse: Dictionary> /// public const UInt16 CALL_GET_DATA = 2; /// /// 设置 /// request: Dictionary> /// reponse: null /// public const UInt16 CALL_SET_DATA = 3; #endregion } }