blob: 9b2937942b239b97a69db840ecec80f9cb7c54fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{-# LANGUAGE DeriveGeneric #-}
module Model.Json.EditIncome
( EditIncome(..)
) where
import GHC.Generics
import Data.Aeson
import Data.Time.Calendar (Day)
import Model.Income (IncomeId)
data EditIncome = EditIncome
{ id :: IncomeId
, date :: Day
, amount :: Int
} deriving (Show, Generic)
instance FromJSON EditIncome
|