// SPDX-License-Identifier: Apache-2.0

import {type ObjectMeta} from '../../resources/object-meta.js';
import {type NamespaceName} from '../../../../types/namespace/namespace-name.js';

export class K8ClientObjectMeta implements ObjectMeta {
  public constructor(
    public readonly namespace: NamespaceName,
    public readonly name: string,
    public readonly labels?: {[key: string]: string},
    public readonly annotations?: {[key: string]: string},
    public readonly uid?: string,
  ) {}
}
