duheng
2025-03-18 09b864e0e3b793187a606ffd0d829aef9511653a
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; }
    }
 
 
 
}