namespace Yw.EPAnet { /// /// 组件 /// public class Parter { /// /// /// public Parter() { } /// /// /// public Parter(Parter rhs) { this.Id = rhs.Id; this.Catalog = rhs.Catalog; this.Name = rhs.Name; } /// /// Id /// public string Id { get; set; } /// /// 分类 /// public string Catalog { get; set; } /// /// 名称 /// public string Name { get; set; } } }