ningshuxia
2024-04-09 51730f13db4aa7e353be3c8133e8429bf19ea3b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections.Generic;
 
namespace IStation.Epanet.Network.Structures
{
 
    ///<summary>Rule source code class.</summary>
    public class Rule : Element
    {
        public Rule(string name) : base(name) { }
 
        #region Overrides of Element
 
        public override ElementType ElementType => ElementType.RULE;
 
        #endregion
 
        public List<string> Code { get; } = new List<string>();
    }
 
}