blob: 7c1a6ed85816d5d853bfb4af2ae5e7736d48c7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Model.Mail
( Mail(..)
) where
import Data.Text (Text)
import qualified Data.Text.Lazy as LT
data Mail = Mail
{ from :: Text
, to :: [Text]
, subject :: Text
, plainBody :: LT.Text
} deriving (Eq, Show)
|