aspnetcore/test/Microsoft.AspNetCore.Routin.../TestObjects/TestEndpoint.cs

13 lines
453 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Routing.TestObjects
{
internal class TestEndpoint : Endpoint
{
public TestEndpoint(EndpointMetadataCollection metadata, string displayName, Address address)
: base(metadata, displayName, address)
{
}
}
}