(refactor): removed useless patch operations

This commit is contained in:
Maksym Sadovnychyy 2025-07-19 21:13:26 +02:00
parent 1316c4d1c0
commit 439fa6f90c
2 changed files with 1 additions and 16 deletions

View File

@ -8,7 +8,7 @@
<!-- NuGet package metadata -->
<PackageId>MaksIT.Core</PackageId>
<Version>1.4.2</Version>
<Version>1.4.3</Version>
<Authors>Maksym Sadovnychyy</Authors>
<Company>MAKS-IT</Company>
<Product>MaksIT.Core</Product>

View File

@ -21,19 +21,4 @@ public enum PatchOperation {
/// When you need to remove an item from a collection
/// </summary>
RemoveFromCollection,
/// <summary>
/// When you need to replace a collection
/// </summary>
ReplaceCollection,
/// <summary>
/// When you need to clear a collection
/// </summary>
ClearCollection,
/// <summary>
/// When you need to set a collection to null
/// </summary>
RemoveCollection
}