2020-04-08 00:22:04 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using zero.Core.Entities;
|
2020-04-05 00:29:26 +02:00
|
|
|
|
|
|
|
|
namespace zero.Core
|
|
|
|
|
{
|
|
|
|
|
public class ZeroOptions
|
|
|
|
|
{
|
2020-04-05 01:19:42 +02:00
|
|
|
public string BackofficePath { get; set; }
|
|
|
|
|
|
2020-04-05 00:29:26 +02:00
|
|
|
public SectionCollection Sections { get; private set; } = new SectionCollection();
|
2020-04-08 00:22:04 +02:00
|
|
|
|
|
|
|
|
public IList<SettingsGroup> SettingsAreas { get; private set; } = new List<SettingsGroup>();
|
2020-04-05 00:29:26 +02:00
|
|
|
}
|
|
|
|
|
}
|