src/issuer/configuration/attribute-provider/dto/create-attribute-provider.dto.ts
OmitType(
AttributeProviderEntity,
["tenantId", "tenant"],
)
import { OmitType } from "@nestjs/swagger";
import { AttributeProviderEntity } from "../entities/attribute-provider.entity";
export class CreateAttributeProviderDto extends OmitType(
AttributeProviderEntity,
["tenantId", "tenant"],
) {}