Files
Yi.Framework/Yi.Furion.Net6/Yi.Framework.Infrastructure/Exceptions/IHasErrorCode.cs
2023-04-15 17:35:22 +08:00

8 lines
131 B
C#

namespace Yi.Framework.Infrastructure.Exceptions
{
internal interface IHasErrorCode
{
int Code { get; }
}
}