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