Files
KonSoft.Clean/shared/KonSoft.Shared.Hosting.AspNetCore/KonSoftBrandingProvider.cs

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";
}
}