ningshuxia
2024-04-09 51730f13db4aa7e353be3c8133e8429bf19ea3b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
 
namespace IStation.Epanet.Enums
{
    internal sealed class KeywordAttribute : Attribute
    {
        public KeywordAttribute(string keyword) { Keyword = keyword; }
 
        public string Keyword { get; }
    }
 
 
 
}