DataObjects/Core_domain.php
[Pman.Core] / DataObjects / Core_oauth_clients.php
1 <?php
2 /**
3  * Table Definition for core_oauth_clients
4  *
5  */
6 require_once 'DB/DataObject.php';
7
8 class Pman_Core_DataObjects_Core_oauth_clients extends DB_DataObject 
9 {
10     ###START_AUTOCODE
11     /* the code below is auto generated do not remove the above tag */
12
13     public $__table = 'core_oauth_clients';         // table name
14     public $id;                                     // INT
15     public $client_id;                              // varchar
16     public $client_secret;                          // varchar
17     public $redirect_uri;                           // varchar
18     public $grant_types;                            // varchar
19     public $scope;                                  // varchar
20     public $user_id;                                // varchar
21     
22     /* the code above is auto generated do not remove the tag below */
23     ###END_AUTOCODE
24     /** make sure there is a watch for this user.. */
25     
26     
27 }