Skip to content

Commit

Permalink
🎉 Initial impl POC of final exam schedule #66
Browse files Browse the repository at this point in the history
the subject is taken from saved schedule and the exam's date and time is from albiruni API
  • Loading branch information
iqfareez committed Apr 2, 2023
1 parent 039f4fb commit f39e3e9
Show file tree
Hide file tree
Showing 9 changed files with 1,336 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Inno/setup-script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "IIUM Schedule"
#define MyAppVersion "1.1.4.0"
#define MyAppVersion "1.2.0.0"
#define MyAppPublisher "Muhammad Fareez Iqmal"
#define MyAppURL "https://iiumschedule.iqfareez.com/"
#define MyAppExeName "iium_schedule.exe"
Expand Down
32 changes: 32 additions & 0 deletions lib/isar_models/saved_final_exam.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import 'package:isar/isar.dart';

part 'saved_final_exam.g.dart';

@collection
class SavedFinalExam {
Id? id;

/// Subject course code
String courseCode;

/// Subject name
String courseTitle;

/// Exam's date and start time
DateTime dateTime;

/// Candidate's seat number
int seatNumber;

/// Exam venue
String venue;

/// Final exam information
SavedFinalExam({
required this.courseCode,
required this.courseTitle,
required this.dateTime,
required this.seatNumber,
required this.venue,
});
}
Loading

0 comments on commit f39e3e9

Please # to comment.