summaryrefslogtreecommitdiff
path: root/entry.py
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-09-16 09:36:14 -0400
committerLouie S <louie@example.com>2023-09-16 09:36:14 -0400
commit5648157daee278795ccdd766f0b27f59a7331286 (patch)
tree6ecd85df7a5c0befac4d7fc1f369ba31fd2e6582 /entry.py
First commit
Diffstat (limited to 'entry.py')
-rw-r--r--entry.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/entry.py b/entry.py
new file mode 100644
index 0000000..3dadb5e
--- /dev/null
+++ b/entry.py
@@ -0,0 +1,8 @@
+
+class Entry:
+ def __init__(self, desc, due = "", due_alt = "", link = ""):
+ self.desc = desc
+ self.due = due
+ self.due_alt = due_alt
+ self.link = link
+ self.done = False