diff --git a/src/collections/YouTubeContent.ts b/src/collections/YouTubeContent.ts index 39eca3f..2362921 100644 --- a/src/collections/YouTubeContent.ts +++ b/src/collections/YouTubeContent.ts @@ -651,6 +651,37 @@ export const YouTubeContent: CollectionConfig = { { name: 'lastSyncedAt', type: 'date', label: 'Letzter Sync', admin: { readOnly: true } }, ], }, + { + name: 'costs', + type: 'group', + label: 'Kosten & Einnahmen', + admin: { + description: 'Für ROI-Berechnung (manuell pflegen)', + }, + fields: [ + { + name: 'estimatedProductionHours', + type: 'number', + label: 'Geschätzte Produktionsstunden', + min: 0, + }, + { + name: 'estimatedProductionCost', + type: 'number', + label: 'Geschätzte Produktionskosten (EUR)', + min: 0, + }, + { + name: 'estimatedRevenue', + type: 'number', + label: 'Geschätzte Einnahmen (EUR)', + min: 0, + admin: { + description: 'AdSense + Sponsoring + Affiliate', + }, + }, + ], + }, ], }, ],