-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Shota Senga edited this page Sep 15, 2019
·
4 revisions
Welcome to the VanHack-2019 wiki!
- Signup
- Choose location
- Pick a dog
- Schedule
- Confirm
User : {
name: string,
age: number,
dogsWalked: Dog [],
profilePic: string // image link
}
Dog : {
name: string,
age: number,
sex: number, // 1 = mail, 2 = femail
album: string [], // an array of image links
breed: string,
profileDesc: string,
availableTimes: Date [], // JS date instances
profilePic: string, // image link
profileVid: string, //video link
profileVidThumbnail: string, // link for thumbnail image
walks: Walk[]
}
Shelter : {
name: string,
geoCoordinates: {aptitude: string, longitude: string}
}
Walk : {
time: Date,
walkers: User [] // people taking the dog to a walk
}