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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/date.php')
-rw-r--r--db/date.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/date.php b/db/date.php
new file mode 100644
index 00000000..c5bad99b
--- /dev/null
+++ b/db/date.php
@@ -0,0 +1,15 @@
+<?php
+namespace OCA\Polls\Db;
+
+use OCP\AppFramework\Db\Entity;
+
+/**
+ * @method timestamp getDt()
+ * @method void setDt(timestamp $value)
+ * @method integer getPollId()
+ * @method void setPollId(integer $value
+ */
+class Date extends Entity {
+ public $dt;
+ public $pollId;
+}