namespace StevanFreeborn.Results { /// /// Represents an error with a code and message. /// public interface IError { /// /// Gets the error code. /// string Code { get; } /// /// Gets the error message. /// string Message { get; } } }