Skip to content

Instantly share code, notes, and snippets.

@ozcan
Created April 11, 2013 11:48
Show Gist options
  • Save ozcan/5362749 to your computer and use it in GitHub Desktop.
Save ozcan/5362749 to your computer and use it in GitHub Desktop.
struct Person {
1: i32 id,
2: string firstName,
3: string lastName,
4: string email,
5: list<Phone> phones
}
struct Course {
1: i32 id,
2: string number,
3: string name,
4: Person instructor,
5: string roomNumber,
6: list<Person> students
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment