2020-04-05 00:29:26 +02:00
|
|
|
using zero.Core.Entities.Sections;
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|