mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
14 lines
378 B
C#
14 lines
378 B
C#
namespace Microsoft.AspNetCore.SpaServices.Prerendering
|
|
{
|
|
public class JavaScriptModuleExport
|
|
{
|
|
public JavaScriptModuleExport(string moduleName)
|
|
{
|
|
ModuleName = moduleName;
|
|
}
|
|
|
|
public string ModuleName { get; private set; }
|
|
public string ExportName { get; set; }
|
|
public string WebpackConfig { get; set; }
|
|
}
|
|
} |