Created
April 11, 2013 11:48
-
-
Save ozcan/5362749 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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