aboutsummaryrefslogtreecommitdiff
path: root/server/src/Model/Mail.hs
blob: 780efccb1e874eef928aa56942b07b2d08429d48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Model.Mail
  ( Mail(..)
  ) where

import           Data.Text (Text)

data Mail = Mail
  { from    :: Text
  , to      :: [Text]
  , subject :: Text
  , body    :: Text
  } deriving (Eq, Show)