Files
mixtape/zero.Backoffice/Configuration/BackofficeOptions.cs
T
2021-11-22 16:03:02 +01:00

29 lines
831 B
C#

namespace zero.Backoffice.Configuration;
public class BackofficeOptions
{
/// <summary>
/// URL path to the backoffice (defaults to /zero)
/// </summary>
public string Path { get; set; }
/// <summary>
/// Paths in the backoffice which are not handled by zero
/// </summary>
public List<string> ExcludedPaths { get; private set; } = new();
/// <summary>
/// Define icon sets which can be used in icon pickers (and also in backoffice rendering)
/// </summary>
public List<BackofficeIconSet> IconSets { get; set; } = new();
/// <summary>
/// Authentication configuration for external services
/// </summary>
public ExternalServicesOptions ExternalServices { get; set; } = new();
/// <summary>
/// Configure search maps
/// </summary>
public SearchOptions Search { get; set; } = new();
}