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

import qualified Data.Text as T

data Detail = Detail
  { description :: Maybe T.Text
  } deriving (Eq, Read, Show)