Initial data model.
This commit is contained in:
4
src/model/invitation.ts
Normal file
4
src/model/invitation.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export type Invitation = {
|
||||
opened: boolean;
|
||||
submitted: boolean;
|
||||
}
|
||||
10
src/model/visitor.ts
Normal file
10
src/model/visitor.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export type Visitor = {
|
||||
name: string;
|
||||
lactoseFree: boolean;
|
||||
dairyFree: boolean;
|
||||
wheatFree: boolean;
|
||||
vegan: boolean;
|
||||
vegatarian: boolean;
|
||||
accomodation: boolean;
|
||||
ride: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user