This commit is contained in:
toni
2026-03-09 20:40:53 +01:00
parent 10f4750755
commit 71ca4d81e1
17 changed files with 2157 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { FoundEvents } from "../generated/prisma/client.js";
export class FoundEventCreateArgs implements Omit<
FoundEvents,
"id" | "foundDate"
> {
source!: string;
url!: string;
eventDate!: string | null;
title!: string | null;
description!: string | null;
}