module Model.Ad ( Ad(..) ) where import Model.Resume import Model.Detail data Ad = Ad { resume :: Resume , detail :: Detail } deriving (Eq, Read, Show)