Webiant Logo Webiant Logo
  1. No results found.

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

Request.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Brevo.MarketingAutomation;

/// 
/// Represents base request to service
/// 
public abstract class Request
{
    /// 
    /// Gets the request path
    /// 
    [JsonIgnore]
    public abstract string Path { get; }

    /// 
    /// Gets the request method
    /// 
    [JsonIgnore]
    public abstract string Method { get; }
}