<?php
/**
* Thin PHP Framework (TPF) 2011-2012 http://thinphp.com
* @package app.model.base
* @license TPF License http://bit.ly/TPFLicense
*/
/**
* This Base Business Object class. Model classes will extend this class.
*/
defined('BASE') or exit('Direct script access is not allowed!');
class BaseBO
{
/**
* Constructor to create a Business Object
*/
public function __construct() {
}
}