22 lines
526 B
C#
22 lines
526 B
C#
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; }
|
|
} |