Skip to content

Commit b467a9d

Browse files
committed
refactor(api): add DTO namespace to API project
1 parent 809e9de commit b467a9d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

PasswordManager.WebAPI/Controllers/AuthController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Models.AppConfiguration;
1010
using Services;
1111
using Interfaces;
12+
using PasswordManager.WebAPI.DTO;
1213

1314
namespace PasswordManager.WebAPI.Controllers;
1415

PasswordManager.WebAPI/Services/JwtOptions.cs renamed to PasswordManager.WebAPI/DTO/JwtOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PasswordManager.WebAPI.Services
1+
namespace PasswordManager.WebAPI.DTO
22
{
33
public class JwtOptions
44
{

PasswordManager.WebAPI/Program.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
using Models.DataConnectors;
77
using Newtonsoft.Json;
88
using System.Net;
9-
using Newtonsoft.Json.Linq;
10-
using Microsoft.Extensions.Hosting.WindowsServices;
119
using Models.AppConfiguration;
1210
using Services.Extensions;
1311
using Serilog;
14-
using Serilog.Events;
12+
using PasswordManager.WebAPI.DTO;
1513
namespace PasswordManager.WebAPI;
1614

1715

0 commit comments

Comments
 (0)