first commit

This commit is contained in:
2025-09-08 14:15:45 +08:00
commit 0ecba9619f
622 changed files with 37941 additions and 0 deletions

View File

@ -0,0 +1,19 @@
using Microsoft.Extensions.Localization;
using KonSoft.TenantManagement.Localization;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Ui.Branding;
namespace KonSoft.TenantManagement;
[Dependency(ReplaceServices = true)]
public class TenantManagementBrandingProvider : DefaultBrandingProvider
{
private IStringLocalizer<TenantManagementResource> _localizer;
public TenantManagementBrandingProvider(IStringLocalizer<TenantManagementResource> localizer)
{
_localizer = localizer;
}
public override string AppName => _localizer["AppName"];
}