-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMegaMenuSettings.cs
More file actions
33 lines (26 loc) · 837 Bytes
/
Copy pathMegaMenuSettings.cs
File metadata and controls
33 lines (26 loc) · 837 Bytes
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
using Nop.Core.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nop.Plugin.Widgets.MegaMenu
{
public class MegaMenuSettings : ISettings
{
#region product
public bool Product { get; set; }
public int productIndex { get; set; }
#endregion product
#region category
public bool Category { get; set; }
public int categoryIndex { get; set; }
#endregion category
#region manufacturer
public bool Manufacturer { get; set; }
public int manufacturerIndex { get; set; }
#endregion manufacturer
public string SelectedProductsList { get; set; }
public string Selected_categories { get; set; }
}
}