source: trunk/grails-app/domain/dbnp/studycapturing/ProtocolParameter.groovy @ 77

Last change on this file since 77 was 77, checked in by keesvb, 13 years ago

sorry, forgot to commit the classes

File size: 184 bytes
Line 
1package dbnp.studycapturing
2
3class ProtocolParameter {
4
5    enum ParameterType { STRING, NUMBER, LIST }
6
7    String name
8    ParameterType type
9   
10    static constraints = {
11    }
12}
Note: See TracBrowser for help on using the repository browser.