<?php
/**
* Object represents table 'currency'
*
* @author: http://phpdao.com
* @date: 2021-10-13 23:11
*/
class Currency {
var $id;
var $name;
var $symbol;
var $conversionFactor;
var $conditions;
var $userid;
var $sysDate;
var $otherconversionFactor;
}
?>