-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomSliderSettings.cs
45 lines (38 loc) · 1.5 KB
/
CustomSliderSettings.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
41
42
43
44
45
using Nop.Core.Configuration;
namespace Nop.Plugin.Widgets.CustomSlider
{
public class CustomSliderSettings : ISettings
{
public int Picture1Id { get; set; }
public string Title1 { get; set; }
public string ShortDescription1 { get; set; }
public string ButtonText1 { get; set; }
public string Link1 { get; set; }
public int Picture2Id { get; set; }
public string Title2 { get; set; }
public string ShortDescription2 { get; set; }
public string ButtonText2 { get; set; }
public string Link2 { get; set; }
public int Picture3Id { get; set; }
public string Title3 { get; set; }
public string ShortDescription3 { get; set; }
public string ButtonText3 { get; set; }
public string Link3 { get; set; }
public int Picture4Id { get; set; }
public string Title4 { get; set; }
public string ShortDescription4 { get; set; }
public string ButtonText4 { get; set; }
public string Link4 { get; set; }
public int Picture5Id { get; set; }
public string Title5 { get; set; }
public string ShortDescription5 { get; set; }
public string ButtonText5 { get; set; }
public string Link5 { get; set; }
public int Picture6Id { get; set; }
public string Title6 { get; set; }
public string ShortDescription6 { get; set; }
public string ButtonText6 { get; set; }
public string Link6 { get; set; }
}
}