change name spaces

This commit is contained in:
MahanCh
2025-06-25 15:02:10 +03:30
parent 1e3780be38
commit 8d490cd3fe
4 changed files with 6 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.Api.BaseControllers;
namespace ServiceHost.BaseControllers;
//[ApiExplorerSettings(GroupName = "Camera")]

View File

@@ -1,7 +1,6 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.Api.BaseControllers;
namespace ServiceHost.BaseControllers;
//[Authorize(Policy = "ClientArea")]
[Area("Client")]

View File

@@ -1,7 +1,6 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.Api.BaseControllers;
namespace ServiceHost.BaseControllers;
[ApiExplorerSettings(GroupName = "General")]

View File

@@ -1,6 +1,6 @@
using System.Globalization;
using Microsoft.AspNetCore.Mvc;
using ServiceHost.Api.BaseControllers;
using ServiceHost.BaseControllers;
namespace ServiceHost.Controllers;