export interface SupportCase {
  id: string
  status: string
  priority?: string
  assigneeId?: string
  categoryId?: string
  slaBreached?: boolean
}
