Files
mixtape/zero.Core/ZeroOptions.cs
T

26 lines
729 B
C#
Raw Normal View History

2020-04-08 00:22:04 +02:00
using System.Collections.Generic;
using zero.Core.Entities;
using zero.Core.Identity;
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
2020-04-29 13:18:53 +02:00
public ListCollections Lists { get; private set; } = new ListCollections();
2020-04-08 00:22:04 +02:00
public IList<SettingsGroup> SettingsAreas { get; private set; } = new List<SettingsGroup>();
public ZeroAuthorizationOptions Authorization { get; private set; } = new ZeroAuthorizationOptions();
}
public class ZeroAuthorizationOptions
{
public IList<PermissionCollection> Permissions { get; private set; } = new List<PermissionCollection>();
}
}