Files
KonSoft.Clean/shared/KonSoft.Shared.Hosting.AspNetCore/KonSoftBrandingProvider.cs
2025-10-16 10:30:51 +08:00

10 lines
266 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";
}