Fetch all categories for creation
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 55s

This commit is contained in:
2025-04-13 17:10:42 +02:00
parent 0fb5f8d682
commit 7e66e69582
35 changed files with 392 additions and 170 deletions

View File

@@ -0,0 +1,14 @@
namespace GameIdeas.BlazorApp.Shared.Constants;
public static class Endpoints
{
public static class Game
{
}
public static class Category
{
public static readonly string AllCategories = "api/Category/All";
}
}