You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
486 B
C#
22 lines
486 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace Ds.Module.AppStartup
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface IDynamicStartup
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="builder"></param>
|
|
public void ConfigureServices(WebApplicationBuilder builder);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="app"></param>
|
|
public void Configure(WebApplication app);
|
|
}
|
|
} |