-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
158ef9b
commit 239932b
Showing
17 changed files
with
128 additions
and
182 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
15 changes: 0 additions & 15 deletions
15
app/src/main/java/com/vignesh/attendancetracker/GlobalStorage.kt
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
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
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
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
5 changes: 1 addition & 4 deletions
5
app/src/main/java/com/vignesh/attendancetracker/dataModels/NewSubject.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
package com.vignesh.attendancetracker.dataModels | ||
|
||
import java.io.Serializable | ||
|
||
data class NewSubject( | ||
var subjectCode : String, | ||
var subjectCredits : String, | ||
var subjectName : String, | ||
var subjectTotalHours : String, | ||
var totalAbsentCount: String, | ||
var dateTracker: ArrayList<Map<String,String>>? | ||
): Serializable | ||
) |
5 changes: 1 addition & 4 deletions
5
app/src/main/java/com/vignesh/attendancetracker/dataModels/Semester.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
package com.vignesh.attendancetracker.dataModels | ||
|
||
data class Semester ( | ||
var subjectsList: ArrayList<Subject> | ||
|
||
) | ||
data class Semester (var subjectsList: ArrayList<Subject>) |
5 changes: 1 addition & 4 deletions
5
app/src/main/java/com/vignesh/attendancetracker/dataModels/Subject.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
package com.vignesh.attendancetracker.dataModels | ||
|
||
import java.io.Serializable | ||
|
||
data class Subject( | ||
var subjectCode : String, | ||
var subjectCredits : String, | ||
var subjectName : String, | ||
var subjectTotalHours : String | ||
): Serializable | ||
) |
5 changes: 1 addition & 4 deletions
5
app/src/main/java/com/vignesh/attendancetracker/dataModels/User.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
package com.vignesh.attendancetracker.dataModels | ||
|
||
data class User( | ||
var subjectsList: ArrayList<NewSubject> | ||
) | ||
data class User(var subjectsList: ArrayList<NewSubject>) |
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
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
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
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
Oops, something went wrong.