aboutsummaryrefslogtreecommitdiffstats
path: root/app/Item.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/Item.py')
-rw-r--r--app/Item.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Item.py b/app/Item.py
new file mode 100644
index 0000000..e74239f
--- /dev/null
+++ b/app/Item.py
@@ -0,0 +1,10 @@
+from dataclasses import dataclass
+
+
+@dataclass
+class Item:
+ """RSS Item"""
+
+ title: str
+ link: str
+ description: str