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

import Model.Resume
import Model.Detail

data Ad = Ad
  { resume :: Resume
  , detail :: Detail
  } deriving (Eq, Read, Show)