diff options
Diffstat (limited to 'src/common/Model/EditIncome.hs')
-rw-r--r-- | src/common/Model/EditIncome.hs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/common/Model/EditIncome.hs b/src/common/Model/EditIncome.hs new file mode 100644 index 0000000..a55c39e --- /dev/null +++ b/src/common/Model/EditIncome.hs @@ -0,0 +1,19 @@ +{-# LANGUAGE DeriveGeneric #-} + +module Common.Model.EditIncome + ( EditIncome(..) + ) where + +import Data.Aeson (FromJSON) +import Data.Time.Calendar (Day) +import GHC.Generics (Generic) + +import Common.Model.Income (IncomeId) + +data EditIncome = EditIncome + { _editIncome_id :: IncomeId + , _editIncome_date :: Day + , _editIncome_amount :: Int + } deriving (Show, Generic) + +instance FromJSON EditIncome |