Skip to content

Commit

Permalink
docs: add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
buehler committed Oct 12, 2023
1 parent 93031b2 commit a7bc869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/KubeOps.Operator.Web/Webhooks/Mutation/MutationResult.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System.Text.Json.JsonDiffPatch;
using System.Text.Json.JsonDiffPatch.Diffs.Formatters;
using System.Text.Json.Nodes;

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

0 comments on commit a7bc869

Please sign in to comment.