class Task { TaskGroup taskGroup String name String description static hasMany = [entries : Entry, modifications : Modification] static belongsTo = TaskGroup static constraints = { name(blank:false) description(blank:false) } String toString() {"${this.name}"} }