You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
538 B
C#
17 lines
538 B
C#
using NPin.Framework.SettingManagement.Domain;
|
|
using NPin.Framework.SettingManagement.Domain.Store;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace NPin.Framework.Upms.Domain.Settings;
|
|
|
|
public class UpmsSettingManagementProvider: SettingManagementProvider, ITransientDependency
|
|
{
|
|
public const string ProviderName = "Upms";
|
|
|
|
public override string Name => ProviderName;
|
|
|
|
public UpmsSettingManagementProvider(ISettingManagementStore settingManagementStore) : base(settingManagementStore)
|
|
{
|
|
}
|
|
|
|
} |