-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSwiperSliderSettings.cs
40 lines (32 loc) · 1.42 KB
/
SwiperSliderSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using Nop.Core.Configuration;
namespace Nop.Plugin.Widgets.SwiperSlider
{
public class SwiperSliderSettings : ISettings
{
public string ContainerCssSelector { get; set; }
public string PaginationCssSelector { get; set; }
public string NavigationNextCssSelector { get; set; }
public string NavigationPrevCssSelector { get; set; }
public string ScrollBarCssSelector { get; set; }
public Direction Direction { get; set; }
public int InitialSlide { get; set; }
public int Speed { get; set; }
public bool Loop { get; set; }
public bool LoopFillGroupWithBlankEnabled { get; set; }
public bool PaginationEnabled { get; set; }
public bool PaginationClickableEnabled { get; set; }
public bool NavigationEnabled { get; set; }
public bool ScrollBarEnabled { get; set; }
public bool AutoPlayEnabled { get; set; }
public int AutoPlayDelay { get; set; }
public bool AutoPlayDisableOnInteraction { get; set; }
public int SlidesPerGroup { get; set; }
public int SpaceBetween { get; set; }
public string SlidesPerView { get; set; }
public int SlidesPerColumn { get; set; }
public bool FreeModeEnabled { get; set; }
public bool DynamicBulletsEnabled { get; set; }
public bool CenteredSlidesEnabled { get; set; }
public string CustomCss { get; set; }
}
}