mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-08 02:30:52 +08:00
7 lines
109 B
C#
7 lines
109 B
C#
|
|
namespace Yi.Framework.Common.Exceptions;
|
||
|
|
|
||
|
|
public interface IHasErrorDetails
|
||
|
|
{
|
||
|
|
string Details { get; }
|
||
|
|
}
|