using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.Epanet
{
public partial class EpanetNodeOutput
{
public EpanetNodeOutput() { }
public EpanetNodeOutput(EpanetNodeOutput rhs)
{
this.ObjectID = rhs.ObjectID;
this.Type = rhs.Type;
}
///
/// 对象标识
///
public string ObjectID;
///
/// 节点类I型那个
///
public eType Type;
}
}