mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
9 lines
176 B
C#
9 lines
176 B
C#
using Microsoft.AspNetCore.Routing;
|
|
|
|
namespace BuildingBlocks.Web;
|
|
|
|
public interface IMinimalEndpoint
|
|
{
|
|
IEndpointRouteBuilder MapEndpoint(IEndpointRouteBuilder builder);
|
|
}
|