source: trunk/grails-app/domain/magetab/idf/Protocol.groovy @ 56

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

Added MAGE-TAB IDF data domain model

File size: 265 bytes
Line 
1package magetab.idf
2
3class Protocol {
4
5    String name
6    String description
7    String software
8    String hardware
9    OntologyTerm type
10
11    static hasMany = [
12        parameters: Parameter
13    ]
14
15    static constraints = {
16        type(nullable: true)
17    }
18}
Note: See TracBrowser for help on using the repository browser.