From 06cb66624ce550e60e994d95d29388c14072f97a Mon Sep 17 00:00:00 2001 From: Nikolai Papin Date: Tue, 30 Sep 2025 22:50:11 +0300 Subject: [PATCH] fix: wrong namespace --- LctMonolith/Services/Contracts/IMissionService.cs | 2 +- LctMonolith/Services/Contracts/IPlayerService.cs | 2 +- LctMonolith/Services/Contracts/IProgressTrackingService.cs | 2 +- LctMonolith/Services/Contracts/IRankService.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LctMonolith/Services/Contracts/IMissionService.cs b/LctMonolith/Services/Contracts/IMissionService.cs index 4c4c2ec..0e09f45 100644 --- a/LctMonolith/Services/Contracts/IMissionService.cs +++ b/LctMonolith/Services/Contracts/IMissionService.cs @@ -1,7 +1,7 @@ using LctMonolith.Models.Database; using LctMonolith.Models.DTO; -namespace GamificationService.Services.Interfaces; +namespace LctMonolith.Services.Interfaces; public interface IMissionService { diff --git a/LctMonolith/Services/Contracts/IPlayerService.cs b/LctMonolith/Services/Contracts/IPlayerService.cs index 26ba5eb..708ebbe 100644 --- a/LctMonolith/Services/Contracts/IPlayerService.cs +++ b/LctMonolith/Services/Contracts/IPlayerService.cs @@ -1,6 +1,6 @@ using LctMonolith.Models.Database; -namespace GamificationService.Services.Interfaces; +namespace LctMonolith.Services.Interfaces; public interface IPlayerService { diff --git a/LctMonolith/Services/Contracts/IProgressTrackingService.cs b/LctMonolith/Services/Contracts/IProgressTrackingService.cs index 9f7418a..5f975f1 100644 --- a/LctMonolith/Services/Contracts/IProgressTrackingService.cs +++ b/LctMonolith/Services/Contracts/IProgressTrackingService.cs @@ -1,7 +1,7 @@ using LctMonolith.Models.Database; using LctMonolith.Models.DTO; -namespace GamificationService.Services.Interfaces; +namespace LctMonolith.Services.Interfaces; public interface IProgressTrackingService { diff --git a/LctMonolith/Services/Contracts/IRankService.cs b/LctMonolith/Services/Contracts/IRankService.cs index 184cb25..91e1f9c 100644 --- a/LctMonolith/Services/Contracts/IRankService.cs +++ b/LctMonolith/Services/Contracts/IRankService.cs @@ -1,6 +1,6 @@ using LctMonolith.Models.Database; -namespace GamificationService.Services.Interfaces; +namespace LctMonolith.Services.Interfaces; public interface IRankService {