You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
547 B
21 lines
547 B
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Volo.Abp.SettingManagement.Blazor;
|
|
|
|
public class SettingComponentCreationContext : IServiceProviderAccessor
|
|
{
|
|
public IServiceProvider ServiceProvider { get; }
|
|
|
|
public List<SettingComponentGroup> Groups { get; }
|
|
|
|
public SettingComponentCreationContext(IServiceProvider serviceProvider)
|
|
{
|
|
ServiceProvider = serviceProvider;
|
|
|
|
Groups = new List<SettingComponentGroup>();
|
|
}
|
|
}
|
|
|
|
|