Webiant Logo Webiant Logo
  1. No results found.

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

SwiperSettings.cs

using Nop.Core.Configuration;

namespace Nop.Plugin.Widgets.Swiper;

/// 
/// Represents plugin settings
/// 
public class SwiperSettings : ISettings
{
    #region Properties

    public bool ShowNavigation { get; set; }
    public bool ShowPagination { get; set; }
    public bool Autoplay { get; set; }
    public int AutoplayDelay { get; set; }
    public bool LazyLoading { get; set; }
    public string Slides { get; set; }

    #endregion
}