export class RandDataBulkResultDto { success: boolean; id: number[]; constructor(ids: number[]) { this.success = true; this.id = ids; } }