From ae587e18e83d6683bc4ee3cbfbea608a7d4d1f9a Mon Sep 17 00:00:00 2001 From: Guy Bianco IV Date: Mon, 20 Jan 2025 15:13:29 -0500 Subject: [PATCH] add Team type --- models/Team.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 models/Team.ts diff --git a/models/Team.ts b/models/Team.ts new file mode 100644 index 0000000..f54035c --- /dev/null +++ b/models/Team.ts @@ -0,0 +1,7 @@ +export type Team = { + readonly team_id?: number; + team_name: string; + contact_person?: string; + contact_person_email?: string; + team_mailinglist?: string; +};