DataObjects/pman.links.ini
[Pman.Core] / DataObjects / Core_geoip_city.php
1 <?php
2 /**
3  * Table Definition for core_geoip_city
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_geoip_city extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_geoip_city';                       // table name
13     public $id;
14     public $name;
15     public $country_id;
16     public $division_id;
17     public $postal_code;
18     public $metro_code;
19     public $time_zone;
20     
21         
22     /* the code above is auto generated do not remove the tag below */
23     ###END_AUTOCODE
24     
25     
26 }