仪表盘
版本库
文件存储
活动
搜索
登录
IStation
/
shys/Service.Ch.V1.0
成行
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
WebApi 整理
ningshuxia
2024-04-25
769413fc5ff52240f001fb4bcfcca21728fb275a
[IStation/shys/Service.Ch.V1.0.git]
/
WebApi
/
IStation.Service.Core
/
7-utils
/
3-epanet
/
Enums
/
ErrorAttribute.cs
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; }
}
}