logo

class

sql::Person

sys::Obj
  sql::Person
  1  //
  2  // Copyright (c) 2008, John Sublett
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   01 Jan 08  John Sublett  Creation
  7  //
  8  
  9  **
 10  ** A person who can author books or use a library.
 11  **
 12  class Person
 13  {
 14    @auto
 15    Int id
 16  
 17    @maxLen=32
 18    Str name
 19  }

More Info

Slots