Update namespace from WebAPI to API.Core

This commit is contained in:
Aaron Po
2026-02-11 13:25:22 -05:00
parent c74b20079b
commit 31e67ebad8
4 changed files with 4 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>WebAPI</RootNamespace>
<RootNamespace>API.Core</RootNamespace>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>

View File

@@ -1,10 +1,9 @@
using System.Net;
using Domain.Core.Entities;
using Microsoft.AspNetCore.Mvc;
using Service.Core.Auth;
using Service.Core.Jwt;
namespace WebAPI.Controllers
namespace API.Core.Controllers
{
[ApiController]
[Route("api/[controller]")]

View File

@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
namespace WebAPI.Controllers
namespace API.Core.Controllers
{
[ApiController]
[ApiExplorerSettings(IgnoreApi = true)]

View File

@@ -2,7 +2,7 @@ using Domain.Core.Entities;
using Microsoft.AspNetCore.Mvc;
using Service.Core.User;
namespace WebAPI.Controllers
namespace API.Core.Controllers
{
[ApiController]
[Route("api/[controller]")]