source: trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy @ 106

Last change on this file since 106 was 106, checked in by keesvb, 14 years ago

added first version of clean data layer specification and clinical data module

File size: 202 bytes
Line 
1package dbnp.studycapturing
2
3import dbnp.data.Term
4
5/**
6 * This domain class describes the subjects in a study.
7 */
8class Subject {
9
10    String name
11    Term species
12
13    static constraints = {
14    }
15}
Note: See TracBrowser for help on using the repository browser.