import type { CreateCredentialInstanceRequest, CredentialInstanceDto } from "../contracts/CredentialContractsRegistry"; import { Command } from "../bus/Command"; export class CreateCredentialInstanceCommand extends Command { constructor(public readonly body: CreateCredentialInstanceRequest) { super(); } }