Skip to content

Commit a7bc869

Browse files
committed
docs: add documentation
1 parent 93031b2 commit a7bc869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/KubeOps.Operator.Web/Webhooks/Mutation/MutationResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System.Text.Json.JsonDiffPatch;
2-
using System.Text.Json.JsonDiffPatch.Diffs.Formatters;
31
using System.Text.Json.Nodes;
42

53
using k8s;
@@ -13,6 +11,8 @@ namespace KubeOps.Operator.Web.Webhooks.Mutation;
1311
/// <summary>
1412
/// The mutation result for the mutation (admission) request to a webhook.
1513
/// </summary>
14+
/// <param name="ModifiedObject">The modified entity if any changes are requested.</param>
15+
/// <typeparam name="TEntity">The type of the entity.</typeparam>
1616
public record MutationResult<TEntity>(TEntity? ModifiedObject = default) : IActionResult
1717
where TEntity : IKubernetesObject<V1ObjectMeta>
1818
{

0 commit comments

Comments
 (0)