This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
titama-backend/lib/common/messages.dart

15 lines
174 B
Dart

library titama.messages;
class Course {
String title;
String time;
String day;
String kind;
String place;
String prof;
String turnin;
int id;
Course();
}