opensupports/server/models/RecoverPassword.php

15 lines
287 B
PHP
Raw Normal View History

2016-07-20 06:38:34 +02:00
<?php
class RecoverPassword extends DataStore {
const TABLE = 'recoverpassword';
public static function getProps() {
return array (
'email',
'token'
);
}
public function getDefaultProps() {
return array();
}
}