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