aboutsummaryrefslogtreecommitdiff
path: root/src/server/Model/Json/CreateIncome.hs
blob: cf9b1c3b3b0cf9576aaecec273ce7672108c5891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE DeriveGeneric #-}

module Model.Json.CreateIncome
  ( CreateIncome(..)
  ) where

import GHC.Generics

import Data.Aeson
import Data.Time.Calendar (Day)

data CreateIncome = CreateIncome
  { date :: Day
  , amount :: Int
  } deriving (Show, Generic)

instance FromJSON CreateIncome