Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IApiResponse.cs

namespace Nop.Plugin.Misc.Zettle.Domain.Api;

/// 
/// Represents response from the service
/// 
public interface IApiResponse
{
    /// 
    /// Gets or sets the error message
    /// 
    public string Error { get; set; }

    /// 
    /// Gets or sets the error description
    /// 
    public string ErrorDescription { get; set; }

    /// 
    /// Gets or sets the developer message
    /// 
    public string DeveloperMessage { get; set; }
}