sozsoft-platform/api/src/Sozsoft.Platform.HttpApi.Host/PlatformBrandingProvider.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

20 lines
561 B
C#

using Sozsoft.Platform.Localization;
using Microsoft.Extensions.Localization;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Ui.Branding;
namespace Sozsoft.Platform;
[Dependency(ReplaceServices = true)]
public class PlatformBrandingProvider : DefaultBrandingProvider
{
private IStringLocalizer<PlatformResource> _localizer;
public PlatformBrandingProvider(IStringLocalizer<PlatformResource> localizer)
{
_localizer = localizer;
}
public override string AppName => PlatformConsts.AppName; //TODO: _localizer["AppName"];
}