duheng
2025-03-18 7ee0220b5f5626deef516b6e5c417bfa201e5a88
1
2
3
4
5
6
7
8
9
10
11
12
namespace IStation.Epanet.Enums
{
    internal sealed class ErrorAttribute : Attribute
    {
        public ErrorAttribute(string msg) { Msg = msg; }
 
        public string Msg { get; }
    }
 
 
 
}