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; } }