blob: f0c9a1f0f89379f103d5acb76abf049608e29118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace ORM\Entities;
use ORM\Entity;
class User extends Entity {
protected $id = FALSE;
protected $slug = FALSE;
protected $username = FALSE;
protected $password = FALSE;
protected $fullname = FALSE;
protected $mailaddr = FALSE;
protected $body = FALSE;
protected $argv = FALSE;
protected $time_insert = FALSE;
protected $time_update = FALSE;
}
|