// resources/assets/ts/share/aufgaben-shared/types/TableDataType.ts
export interface TableDataType {
  id: number;
  task: string;
  current_task: string;
  task_comment: string;
  erg_krzl: string;
  aud_count: number;
  erg_strdat: string;
  dya_nextaufgabe: string;
  done_at: string;
  task_type: string;
  color: string;
  isPlanned: boolean;
  isBlocked: boolean;
  erg_strerl: number;
  group_ID: number;
  comment_count: number;
  point_count: number;
  picture_count: number;
  erg_clone: number;
  agb_activefunc: number;
  a1_agb_id: number | null;
  agb_id: number;
  erg_lngid: string;
  tags?: string[];
  agb_lftid: number;
  agb_rechte_usr1?: string;
  a1_agb_rechte_usg?: string;
  agb_responsibility?: string;
}