sozsoft-platform/api/src/Sozsoft.Platform.HttpApi.Host/PlatformBrandingProvider.cs

21 lines
561 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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"];
}