namespace IStation.Epanet.Enums { internal sealed class KeywordAttribute : Attribute { public KeywordAttribute(string keyword) { Keyword = keyword; } public string Keyword { get; } } }