ningshuxia
2025-04-16 a67da735b33be01b24845ce03ae7551cf55ddbbc
1
2
3
4
5
6
7
8
9
10
11
12
namespace IStation.Epanet.Enums
{
    internal sealed class KeywordAttribute : Attribute
    {
        public KeywordAttribute(string keyword) { Keyword = keyword; }
 
        public string Keyword { get; }
    }
 
 
 
}