import type { CredentialBinding } from "@codemation/core"; import type { UpsertCredentialBindingRequest } from "../contracts/CredentialContractsRegistry"; import { Command } from "../bus/Command"; export class UpsertCredentialBindingCommand extends Command { constructor(public readonly body: UpsertCredentialBindingRequest) { super(); } }