mirror of
https://github.com/AlexMacocian/Net.Sdk.Web.Extensions.git
synced 2026-07-15 13:39:29 +00:00
14 lines
357 B
C#
14 lines
357 B
C#
|
|
namespace Net.Sdk.Web.Extensions.SourceGenerators.Tests;
|
|
|
|
public class EndpointRouteBuilder : IEndpointRouteBuilder
|
|
{
|
|
public IServiceProvider ServiceProvider { get; }
|
|
public ICollection<EndpointDataSource> DataSources { get; }
|
|
|
|
public IApplicationBuilder CreateApplicationBuilder()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|