From 3b4954d387221a3992751e106c95a5f8fb581e7c Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 16 Apr 2026 14:55:10 +0200 Subject: [PATCH] Remove FakeRequest class and ResultType enum Deleted FakeRequest.cs and ResultType.cs, removing the FakeRequest class (with Body and Header properties) and the ResultType enum (Full, OnlyHeader, OnlyBody). These types are no longer needed in the codebase. --- src/ReC.API/Models/FakeRequest.cs | 8 -------- src/ReC.API/Models/ResultType.cs | 17 ----------------- 2 files changed, 25 deletions(-) delete mode 100644 src/ReC.API/Models/FakeRequest.cs delete mode 100644 src/ReC.API/Models/ResultType.cs diff --git a/src/ReC.API/Models/FakeRequest.cs b/src/ReC.API/Models/FakeRequest.cs deleted file mode 100644 index 4e082a1..0000000 --- a/src/ReC.API/Models/FakeRequest.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace ReC.API.Models; - -public class FakeRequest -{ - public Dictionary? Body { get; init; } - - public Dictionary? Header { get; init; } -} \ No newline at end of file diff --git a/src/ReC.API/Models/ResultType.cs b/src/ReC.API/Models/ResultType.cs deleted file mode 100644 index 15751c9..0000000 --- a/src/ReC.API/Models/ResultType.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace ReC.API.Models; - -public enum ResultType -{ - /// - /// Return the full result object. - /// - Full, - /// - /// Return only the header part of the result. - /// - OnlyHeader, - /// - /// Return only the body part of the result. - /// - OnlyBody -} \ No newline at end of file