1 /*
2 * Copyright (C) 2025 B3Partners B.V.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7 package org.tailormap.api.security;
8
9 import java.io.Serializable;
10
11 public record TailormapAdditionalProperty(String key, Boolean isPublic, Object value) implements Serializable {}