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;

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

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