From f90e88b56f8bc4156c4567e21d6d67156d2e6906 Mon Sep 17 00:00:00 2001 From: nharris Date: Fri, 16 Sep 2022 14:11:30 -0600 Subject: [PATCH] - Move beta features out of unnecessary beta namespaces/folders --- EasyPost/BetaClient.cs | 2 +- EasyPost/Models/API/{Beta => }/Referral.cs | 2 +- EasyPost/Services/{Beta => }/PartnerService.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename EasyPost/Models/API/{Beta => }/Referral.cs (58%) rename EasyPost/Services/{Beta => }/PartnerService.cs (94%) diff --git a/EasyPost/BetaClient.cs b/EasyPost/BetaClient.cs index 073970b2a..f646457e1 100644 --- a/EasyPost/BetaClient.cs +++ b/EasyPost/BetaClient.cs @@ -1,6 +1,6 @@ using System.Net.Http; using EasyPost._base; -using EasyPost.Services.Beta; +using EasyPost.Services; namespace EasyPost { diff --git a/EasyPost/Models/API/Beta/Referral.cs b/EasyPost/Models/API/Referral.cs similarity index 58% rename from EasyPost/Models/API/Beta/Referral.cs rename to EasyPost/Models/API/Referral.cs index 3bc8bff54..5ac6d400b 100644 --- a/EasyPost/Models/API/Beta/Referral.cs +++ b/EasyPost/Models/API/Referral.cs @@ -1,4 +1,4 @@ -namespace EasyPost.Models.API.Beta +namespace EasyPost.Models.API { public class Referral : User { diff --git a/EasyPost/Services/Beta/PartnerService.cs b/EasyPost/Services/PartnerService.cs similarity index 94% rename from EasyPost/Services/Beta/PartnerService.cs rename to EasyPost/Services/PartnerService.cs index 029c12195..d5c15ffaf 100644 --- a/EasyPost/Services/Beta/PartnerService.cs +++ b/EasyPost/Services/PartnerService.cs @@ -1,10 +1,10 @@ using System.Collections.Generic; using System.Threading.Tasks; using EasyPost._base; -using EasyPost.Models.API.Beta; +using EasyPost.Models.API; using EasyPost.Utilities.Annotations; -namespace EasyPost.Services.Beta +namespace EasyPost.Services { public class PartnerService : EasyPostService {