aboutsummaryrefslogtreecommitdiff
path: root/src/Model/SkillType.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/SkillType.hs')
-rw-r--r--src/Model/SkillType.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Model/SkillType.hs b/src/Model/SkillType.hs
new file mode 100644
index 0000000..3e533b8
--- /dev/null
+++ b/src/Model/SkillType.hs
@@ -0,0 +1,15 @@
+{-# LANGUAGE DeriveGeneric #-}
+
+module Model.SkillType where
+
+import GHC.Generics
+import Data.Yaml
+
+import Model.Translated
+
+data SkillType = SkillType
+ { name :: Translated
+ , skills :: [Translated]
+ } deriving (Show, Read, Eq, Generic)
+
+instance FromJSON SkillType