Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Misc.Zettle.Domain.Api;
/// <summary>
/// Represents response from the service
/// </summary>
public interface IApiResponse
{
/// <summary>
/// Gets or sets the error message
/// </summary>
public string Error { get; set; }
/// <summary>
/// Gets or sets the error description
/// </summary>
public string ErrorDescription { get; set; }
/// <summary>
/// Gets or sets the developer message
/// </summary>
public string DeveloperMessage { get; set; }
}