root/src/main/groovy/org/mindscratch/mrhakibook/model/Author.groovy @ a7cde4d15539d912dd4f72f9afaaa9e317365557

Revision a7cde4d15539d912dd4f72f9afaaa9e317365557, 153 bytes (checked in by U-craigzor\craig <craig@…>, 8 months ago)

initial commit

  • Property mode set to 100755
Line 
1package org.mindscratch.mrhakibook.model
2
3class Author {
4
5  def name, url, email
6
7  def String toString() {
8    return "$name|$email|$url"
9  }
10}
Note: See TracBrowser for help on using the browser.