data class AssignmentTag: Any
      
Fields
| Name | Description | 
|---|---|
| val id: Long | is a primary-key like generated value. | 
| val name: String | is a String, representing the name of the tag. | 
| var selected: Boolean | is a Boolean, indicating if this tag has been selected in a current filter. | 
Constructors
<init>
        constructor(id: Long, name: String, selected: Boolean)
      
Represents a "tag" used to categorize Assignments. It is mostly used for filtering purposes. It might take any value (e.g. the name of the course, the year, the type of evaluation, etc.).
Parameters
| Name | Description | 
|---|---|
| id: Long | |
| name: String | |
| selected: Boolean | 
Represents a "tag" used to categorize Assignments. It is mostly used for filtering purposes. It might take any value (e.g. the name of the course, the year, the type of evaluation, etc.).