From 439fa6f90c0b5319e293b7b90523988e97726c2c Mon Sep 17 00:00:00 2001 From: Maksym Sadovnychyy Date: Sat, 19 Jul 2025 21:13:26 +0200 Subject: [PATCH] (refactor): removed useless patch operations --- src/MaksIT.Core/MaksIT.Core.csproj | 2 +- src/MaksIT.Core/Webapi/Models/PatchOperation.cs | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/src/MaksIT.Core/MaksIT.Core.csproj b/src/MaksIT.Core/MaksIT.Core.csproj index d652e65..390eede 100644 --- a/src/MaksIT.Core/MaksIT.Core.csproj +++ b/src/MaksIT.Core/MaksIT.Core.csproj @@ -8,7 +8,7 @@ MaksIT.Core - 1.4.2 + 1.4.3 Maksym Sadovnychyy MAKS-IT MaksIT.Core diff --git a/src/MaksIT.Core/Webapi/Models/PatchOperation.cs b/src/MaksIT.Core/Webapi/Models/PatchOperation.cs index a8d7ba0..6d6b576 100644 --- a/src/MaksIT.Core/Webapi/Models/PatchOperation.cs +++ b/src/MaksIT.Core/Webapi/Models/PatchOperation.cs @@ -21,19 +21,4 @@ public enum PatchOperation { /// When you need to remove an item from a collection /// RemoveFromCollection, - - /// - /// When you need to replace a collection - /// - ReplaceCollection, - - /// - /// When you need to clear a collection - /// - ClearCollection, - - /// - /// When you need to set a collection to null - /// - RemoveCollection }