using System; using System.Collections.Generic; using System.Text; namespace GummingEntity { public class ParallelEntity : ICloneable { public int StartIndex { get; set; } public int MiddleIndex { get; set; } public int EndIndex { get; set; } public bool IsSyntropy { get; set; } //同向 public object Clone() { ParallelEntity clone = new ParallelEntity() { StartIndex = this.StartIndex, MiddleIndex = this.MiddleIndex, EndIndex = this.EndIndex, IsSyntropy = this.IsSyntropy, }; return clone; } } }