Refactor Card Model to manage endpoint routing

This commit is contained in:
2025-12-29 17:12:08 -06:00
parent 41d1cc4fc0
commit b01ff470ac
4 changed files with 43 additions and 42 deletions

View File

@@ -0,0 +1,6 @@
namespace SDG_Backend_Barracuda.Models;
public interface IEndpointRouteHandler
{
static abstract void MapEndpoints(IEndpointRouteBuilder routes);
}