Webiant Logo Webiant Logo
  1. No results found.

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

CloudflareImagesSettings.cs

using Nop.Core.Configuration;

namespace Nop.Plugin.Misc.CloudflareImages;

/// 
/// Represents Cloudflare Images configuration parameters
/// 
public class CloudflareImagesSettings : ISettings
{
    /// 
    /// Gets a value indicating whether we should use Cloudflare Images
    /// 
    public bool Enabled { get; set; }

    /// 
    /// Gets or sets a period (in seconds) before the request times out
    /// 
    public int? RequestTimeout { get; set; }

    /// 
    /// Gets or sets the Cloudflare Images account ID
    /// 
    public string AccountId { get; set; }

    /// 
    /// Gets or sets the Cloudflare Images access token
    /// 
    public string AccessToken { get; set; }

    /// 
    /// Gets or sets end point for Cloudflare Images
    /// 
    public string DeliveryUrl { get; set; }
}