prosper-0.1.0.0: src/Prosper/User.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
module Prosper.User
( User(..)
) where
import Control.Monad (when)
import Data.ByteString (ByteString)
-- | User info for Prosper data
data User = User
{ username :: !ByteString -- ^ Username for Prosper
, password :: !ByteString -- ^ Password for Prosper
} deriving (Show, Eq)