Files
mixtape/zero.Core/ZeroOptions.cs
T

15 lines
356 B
C#
Raw Normal View History

2020-04-08 00:22:04 +02:00
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.Core
{
public class ZeroOptions
{
2020-04-05 01:19:42 +02:00
public string BackofficePath { get; set; }
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>();
}
}