20 lines
345 B
C#
20 lines
345 B
C#
namespace StevanFreeborn.Results
|
|||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Represents an error with a code and message.
|
||
|
|
/// </summary>
|
||
|
|
public interface IError
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the error code.
|
||
|
|
/// </summary>
|
||
|
|
string Code { get; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the error message.
|
||
|
|
/// </summary>
|
||
|
|
string Message { get; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|