Basic structure and courses api

This commit is contained in:
Marcel Kapfer (mmk2410) 2016-06-13 17:13:02 +02:00
parent 1c60f68c62
commit 9f4eb7f79a
5 changed files with 71 additions and 0 deletions

14
lib/common/messages.dart Normal file
View file

@ -0,0 +1,14 @@
library titama.messages;
class Course {
String title;
String time;
String day;
String kind;
String place;
String prof;
String turnin;
int id;
Course();
}

0
lib/common/utils.dart Normal file
View file