aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Ad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Ad.hs')
-rw-r--r--src/Model/Ad.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Model/Ad.hs b/src/Model/Ad.hs
new file mode 100644
index 0000000..fe650a6
--- /dev/null
+++ b/src/Model/Ad.hs
@@ -0,0 +1,11 @@
+module Model.Ad
+ ( Ad(..)
+ ) where
+
+import Model.Resume
+import Model.Detail
+
+data Ad = Ad
+ { resume :: Resume
+ , detail :: Detail
+ } deriving (Eq, Read, Show)