From 664945078a8eacf980dde7aebb6447b56d83c182 Mon Sep 17 00:00:00 2001 From: Guillaume Faas <59444272+Tr00d@users.noreply.github.com> Date: Thu, 14 Sep 2023 09:40:29 +0200 Subject: [PATCH] refactor: Remove unused class ResponseBase (#510) --- Vonage/ResponseBase.cs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 Vonage/ResponseBase.cs diff --git a/Vonage/ResponseBase.cs b/Vonage/ResponseBase.cs deleted file mode 100644 index 910d94eb9..000000000 --- a/Vonage/ResponseBase.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Newtonsoft.Json; - -namespace Vonage; - -public class ResponseBase -{ - [JsonProperty("error-code")] - public string ErrorCode { get; set; } - [JsonProperty("error-code-label")] - public string ErrorCodeLabel { get; set; } -} \ No newline at end of file