initial commit

This commit is contained in:
walamana
2023-09-16 21:45:26 +02:00
commit 2d458f08f3
64 changed files with 4655 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
export interface Gottesdienst {
id: number
name: string
date: Date
attendance: Date
planId: number
}
export interface SimplifiedMinistrant {
id: number,
firstname: string,
lastname: string
}
export interface Mark {
mid: number,
gid: number,
value: number
}
export interface PlanModel {
gottesdienste: Array<Gottesdienst>,
ministranten: Array<SimplifiedMinistrant>,
marks: Array<Mark>
}