ningshuxia
2024-03-20 785c92f5078cb7aeb05b13f6da627defb6525b36
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>();
    }
 
}