mateamt/src/Types/Journal.hs

12 lines
291 B
Haskell
Raw Normal View History

2019-08-08 16:59:23 +00:00
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
module Types.Journal where
data JournalEntry
= JournalEntry
{ journalEntryDescription :: String
, journalEntryTimestamp :: UTCTime
, journalEntryAmount :: Int
, journalEntryIsCheck :: Bool
}