using System.Collections.Generic; using zero.Core.Entities; using zero.Core.Identity; namespace zero.Core { public class ZeroOptions { public string BackofficePath { get; set; } public SectionCollection Sections { get; private set; } = new SectionCollection(); public ListCollections Lists { get; private set; } = new ListCollections(); public IList SettingsAreas { get; private set; } = new List(); public ZeroAuthorizationOptions Authorization { get; private set; } = new ZeroAuthorizationOptions(); } public class ZeroAuthorizationOptions { public IList Permissions { get; private set; } = new List(); } }