Skip to content

Instantly share code, notes, and snippets.

@excalliburbd
Created August 18, 2016 10:17
Show Gist options
  • Select an option

  • Save excalliburbd/91cf2c57c9eee8f98a10f219b09d4dc5 to your computer and use it in GitHub Desktop.

Select an option

Save excalliburbd/91cf2c57c9eee8f98a10f219b09d4dc5 to your computer and use it in GitHub Desktop.
{
semester: String,
student:{
name: String,
id: String,
adviser: String,
creditCompleted: Number,
creditAttempted: Number,
},
courseList:[
{
name: String,
id: String,
slots: [
{
faculty: String,
time: Date,
isLab: boolean,
exam: String
},
{
...
}
]
},
{
...
}
],
selected:[
{
name: String,
id: String,
slot:{
faculty: String,
time: Date,
isLab: boolean,
exam: String
}
},
{
...
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment