aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Mail.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Mail.hs')
-rw-r--r--src/Model/Mail.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Model/Mail.hs b/src/Model/Mail.hs
index 20addee..7c75bbb 100644
--- a/src/Model/Mail.hs
+++ b/src/Model/Mail.hs
@@ -3,12 +3,11 @@ module Model.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
- , htmlBody :: LT.Text
+ , plainBody :: Text
+ , htmlBody :: Text
} deriving (Eq, Show)