aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Resume.hs
blob: 1b73baf39f34cce1d320bdad9f81a101d3f022ce (plain)
1
2
3
4
5
6
7
8
9
module Model.Resume
  ( Resume(..)
  ) where

data Resume = Resume
  { name :: String
  , price :: Maybe String
  , url :: String
  } deriving (Eq, Read, Show)