namespace Yw.EPAnet { /// /// 组件接口 /// public interface IParter { /// /// Id /// string Id { get; set; } /// /// 名称 /// string Name { get; set; } } }