From cb92d1d051057c84affb0889bc0e8ad22d500d12 Mon Sep 17 00:00:00 2001 From: hasanrafique Date: Thu, 21 Jul 2022 09:43:54 +0100 Subject: [PATCH] MAC 18 code review changes removed unused interface --- .../Configuration/TasksClientApiConfiguration.cs | 10 ---------- .../Interfaces/ITasksClientApiConfiguration.cs | 8 -------- 2 files changed, 18 deletions(-) delete mode 100644 src/SFA.DAS.EmployerAccounts/Configuration/TasksClientApiConfiguration.cs delete mode 100644 src/SFA.DAS.EmployerAccounts/Interfaces/ITasksClientApiConfiguration.cs diff --git a/src/SFA.DAS.EmployerAccounts/Configuration/TasksClientApiConfiguration.cs b/src/SFA.DAS.EmployerAccounts/Configuration/TasksClientApiConfiguration.cs deleted file mode 100644 index 7801607228..0000000000 --- a/src/SFA.DAS.EmployerAccounts/Configuration/TasksClientApiConfiguration.cs +++ /dev/null @@ -1,10 +0,0 @@ -using SFA.DAS.EmployerAccounts.Interfaces; - -namespace SFA.DAS.EmployerAccounts.Configuration -{ - public class TasksClientApiConfiguration : ITasksClientApiConfiguration - { - public string ApiBaseUrl { get; set; } - public string IdentifierUri { get; set; } - } -} diff --git a/src/SFA.DAS.EmployerAccounts/Interfaces/ITasksClientApiConfiguration.cs b/src/SFA.DAS.EmployerAccounts/Interfaces/ITasksClientApiConfiguration.cs deleted file mode 100644 index 663aba6688..0000000000 --- a/src/SFA.DAS.EmployerAccounts/Interfaces/ITasksClientApiConfiguration.cs +++ /dev/null @@ -1,8 +0,0 @@ -using SFA.DAS.Http.Configuration; - -namespace SFA.DAS.EmployerAccounts.Interfaces -{ - public interface ITasksClientApiConfiguration : IManagedIdentityClientConfiguration - { - } -}