Files
mixtape/zero.Core/ZeroOptions.cs
T
2020-04-05 01:19:42 +02:00

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();
}
}