Added another example

This commit is contained in:
Marcel Kapfer (mmk2410) 2016-06-14 21:46:42 +02:00
parent 9f4eb7f79a
commit 1e456059cb
1 changed files with 11 additions and 0 deletions

View File

@ -22,6 +22,17 @@ class TitamaApi {
..prof = ""
..turnin = "";
_courses.add(course);
Course course2 = new Course();
course2
..title = "CCC Ulm"
..time = "20:00"
..day = "Monday"
..id = 1
..kind = "Meeting"
..place = "Cafe Einstein"
..prof = ""
..turnin = "";
_courses.add(course2);
}
@ApiMethod(path: 'courses')