Files
2023-01-01 23:51:05 +08:00

9 lines
147 B
C#

using Yi.Framework.Common.Enum;
namespace Yi.Framework.Common.Exceptions;
public interface IHasErrorCode
{
ResultCodeEnum Code { get; }
}