using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model.Bimface { /// /// Bimface自定义层抽象基类 /// public abstract class CustomLayer { /// /// 标识 /// public string ID { get; set; } /// /// 名称 /// public string Name { get; set; } } }