import { IsNotEmpty, IsObject, IsString } from 'class-validator';

export class ConnectIntegrationDto {
  @IsString()
  @IsNotEmpty()
  integrationType: string; // woocommerce, shopify, etc.

  @IsString()
  @IsNotEmpty()
  integrationName: string;

  @IsObject()
  @IsNotEmpty()
  credentials: Record<string, any>;
}
