diff --git a/src/model/invitation.ts b/src/model/invitation.ts new file mode 100644 index 0000000..7543505 --- /dev/null +++ b/src/model/invitation.ts @@ -0,0 +1,4 @@ +export type Invitation = { + opened: boolean; + submitted: boolean; +} \ No newline at end of file diff --git a/src/model/visitor.ts b/src/model/visitor.ts new file mode 100644 index 0000000..09c9f0e --- /dev/null +++ b/src/model/visitor.ts @@ -0,0 +1,10 @@ +export type Visitor = { + name: string; + lactoseFree: boolean; + dairyFree: boolean; + wheatFree: boolean; + vegan: boolean; + vegatarian: boolean; + accomodation: boolean; + ride: boolean; +} \ No newline at end of file