mirror of https://github.com/abpframework/abp.git
3 changed files with 33 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace AuthServer.Host |
|||
{ |
|||
public class BrandingProvider : IBrandingProvider, ISingletonDependency |
|||
{ |
|||
public string AppName => "Authentication Server"; |
|||
public string LogoUrl => null; |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace BackendAdminApp.Host |
|||
{ |
|||
public class BrandingProvider : IBrandingProvider, ISingletonDependency |
|||
{ |
|||
public string AppName => "Backend Admin App"; |
|||
public string LogoUrl => null; |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace PublicWebSite.Host |
|||
{ |
|||
public class BrandingProvider : IBrandingProvider, ISingletonDependency |
|||
{ |
|||
public string AppName => "Public Web Site"; |
|||
public string LogoUrl => null; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue