12 lines
289 B
C#
12 lines
289 B
C#
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Ui.Branding;
|
|
|
|
namespace KonSoft.Shared.Hosting.AspNetCore
|
|
{
|
|
[Dependency(ReplaceServices = true)]
|
|
public class KonSoftBrandingProvider : DefaultBrandingProvider
|
|
{
|
|
public override string AppName => "KonSoft";
|
|
}
|
|
}
|