Started model for the assignment system.

This commit is contained in:
Andreas Oppebøen
2011-11-24 19:39:42 +01:00
parent bfedbcc932
commit ab1135d2b5
17 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package model;
import java.util.HashSet;
public class AssignmentGroup extends HashSet<Assignment> {
}