29 lines
721 B
PHP
29 lines
721 B
PHP
<?php
|
|
/**
|
|
* Zeed Platform Project
|
|
* Based on Zeed Framework & Zend Framework.
|
|
*
|
|
* BTS - Billing Transaction Service
|
|
* CAS - Central Authentication Service
|
|
*
|
|
* LICENSE
|
|
* http://www.zeed.com.cn/license/
|
|
*
|
|
* @category Zeed
|
|
* @package Zeed_ChangeMe
|
|
* @subpackage ChangeMe
|
|
* @copyright Copyright (c) 2010 Zeed Technologies PRC Inc. (http://www.zeed.com.cn)
|
|
* @author Zeed Team (http://blog.zeed.com.cn)
|
|
* @since Sep 8, 2010
|
|
* @version SVN: $Id: PermissionScheme.php 6698 2010-09-08 10:22:00Z xsharp $
|
|
*/
|
|
|
|
class Com_Entity_PermissionScheme extends Zeed_Object
|
|
{
|
|
public $schemeid;
|
|
public $name;
|
|
public $description;
|
|
}
|
|
|
|
// End ^ Native EOL ^ encoding
|