using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FObjBase { /// <summary> /// 表示本地 /// </summary> public class FConnLocal:IFConn { #region IFConn 成员 public ConnectHandler ConnectAction { get; set; } public bool IsConnected { get { return true; } } public bool Enable { get; set; } public uint TranID { get; set; } #endregion } }