Webiant Logo Webiant Logo
  1. No results found.

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

IApiRequest.cs

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

/// 
/// Represents request object
/// 
public interface IApiRequest
{
    /// 
    /// Gets the request base URL
    /// 
    public string BaseUrl { get; }

    /// 
    /// Gets the request path
    /// 
    public string Path { get; }

    /// 
    /// Gets the request method
    /// 
    public string Method { get; }
}