Files
Yi.Framework/Yi.Furion.Rbac/Yi.Framework.Infrastructure/Exceptions/IHasErrorCode.cs
2023-04-13 21:12:06 +08:00

8 lines
131 B
C#

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