lixiaojun
2024-08-13 0e0709e63ed50093d09fb88ac1ea4eb9b5a37afc
Hydro/Yw.EPAnet.Calcu.Core/03-calculation/CalcuResult.cs
@@ -6,6 +6,17 @@
    public class CalcuResult
    {
        /// <summary>
        ///
        /// </summary>
        public CalcuResult()
        {
            this.Succeed = true;
            this.FailedList = new List<CalcuFailed>();
            this.NodeList = new List<CalcuNode>();
            this.LinkList = new List<CalcuLink>();
        }
        /// <summary>
        /// 是否成功
        /// </summary>
        public bool Succeed { get; set; }