Files
gulermak_metro/data/documents.ts
Şahan Hasret 76c31274d5 Database
2025-11-21 17:46:30 +03:00

15 lines
372 B
TypeScript

export interface Document {
id: number;
title: string;
category: 'ihale' | 'teknik' | 'cevresel' | 'raporlar' | 'guvenlik';
date: string;
size: string;
type: 'PDF' | 'DWG' | 'XLSX' | 'DOCX';
description: string;
downloadUrl?: string;
featured?: boolean;
}
// Mock data removed - all data comes from database
export const documentsData: Document[] = [];