git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@81 97e9348a-65ac-dc4b-aefc-98561f571b83
15 lines
212 B
PHP
15 lines
212 B
PHP
<?php
|
|
class LeaseType extends AppModel {
|
|
|
|
var $name = 'LeaseType';
|
|
var $validate = array(
|
|
'id' => array('numeric'),
|
|
'name' => array('notempty')
|
|
);
|
|
|
|
var $hasMany = array(
|
|
'Lease',
|
|
);
|
|
|
|
}
|
|
?>
|