Try your search with a different keyword or use * as a wildcard.
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; }
}