{-# LANGUAGE DeriveGeneric #-} module Model.Authentication (AuthenticationResponse (..)) where import GHC.Generics import Data.Text (Text) ---------------------------------------------------------------------------------------------------- data AuthenticationResponse = AuthenticationResponse -- delete? { userId :: Text } deriving (Show, Eq, Generic)