Contact.php 330 Bytes
Newer Older
JULIO JARAMILLO's avatar
JULIO JARAMILLO committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php

class Contact extends CActiveRecord
{
	/**
	 * @var integer ID of this record
	 * @soap
	 */
	public $id;
	/**
	 * @var string name
	 * @soap
	 */
	public $name;
	/**
	 * @var string phone number
	 * @soap
	 */
	public $phone;

	public static function model($className=__CLASS__)
	{
		return parent::model($className);
	}
}