namespace Yw.EPAnet { /// /// 模式 /// public class Pattern : Operation { /// /// /// public Pattern() { } /// /// /// public Pattern(Pattern rhs) : base(rhs) { this.Category = rhs.Category; this.Multipliers = rhs.Multipliers; } /// /// 类别 /// public string Category { get; set; } /// /// 乘子 /// public List Multipliers { get; set; } } }