12 lines
233 B
C#
12 lines
233 B
C#
using zero.Core.Entities.Sections;
|
|
|
|
namespace zero.Core
|
|
{
|
|
public class ZeroOptions
|
|
{
|
|
public string BackofficePath { get; set; }
|
|
|
|
public SectionCollection Sections { get; private set; } = new SectionCollection();
|
|
}
|
|
}
|