11 lines
243 B
C#
11 lines
243 B
C#
|
using Volo.Abp.DependencyInjection;
|
|||
|
using Volo.Abp.Ui.Branding;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS;
|
|||
|
|
|||
|
[Dependency(ReplaceServices = true)]
|
|||
|
public class WMSBrandingProvider : DefaultBrandingProvider
|
|||
|
{
|
|||
|
public override string AppName => "WMS";
|
|||
|
}
|