source: trunk/grails-app/domain/dbnp/importer/Column.groovy @ 247

Last change on this file since 247 was 247, checked in by duh, 13 years ago
  • set keyword expansion
  • Property svn:keywords set to Author Rev Date
File size: 231 bytes
Line 
1package dbnp.importer
2
3class Column {
4    String type
5    String name
6    String value
7
8    static constraints = {
9        type(nullable:true)
10        name(nullable:true)
11        value(nullable:true)
12    }
13
14    String toString() {
15        return name
16    }
17}
Note: See TracBrowser for help on using the repository browser.