Initial data model.

This commit is contained in:
codevictory
2021-10-24 20:03:53 +03:00
parent 9e66d5a5dd
commit 2dd5ab07b0
2 changed files with 14 additions and 0 deletions

4
src/model/invitation.ts Normal file
View File

@@ -0,0 +1,4 @@
export type Invitation = {
opened: boolean;
submitted: boolean;
}

10
src/model/visitor.ts Normal file
View File

@@ -0,0 +1,10 @@
export type Visitor = {
name: string;
lactoseFree: boolean;
dairyFree: boolean;
wheatFree: boolean;
vegan: boolean;
vegatarian: boolean;
accomodation: boolean;
ride: boolean;
}