15 lines
372 B
TypeScript
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[] = [];
|