You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
554 B
27 lines
554 B
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;
|
|
}
|
|
}
|
|
}
|
|
|