using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hydro.Revit.Base
{
public interface IBaseInterface
{
///
/// 坐标JSON
///
string PositionJson { get; set; }
///
/// 系统类型
///
string SystemType { get; set; }
}
}