Welcome to mirror list, hosted at ThFree Co, Russian Federation.

participation.php « db - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c744f8f85d72e5e93bc795f3fb43bc95dae9096b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
namespace OCA\Polls\Db;

use OCP\AppFramework\Db\Entity;

/**
 * @method timestamp getDt()
 * @method void setDt(timestamp $value)
 * @method string getUserId()
 * @method void setUserId(string $value)
 * @method integer getPollId()
 * @method void setPollId(integer $value)
 * @method integer getType()
 * @method void setType(integer $value)
 */
class Participation extends Entity {
    public $dt;
    public $userId;
    public $pollId;
    public $type;
}