aboutsummaryrefslogtreecommitdiff
path: root/src/server/Model/Json/EditIncome.hs
blob: be3c7dc718fe938114fb662f69d0828de798781b (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.Database (IncomeId)

data EditIncome = EditIncome
  { id :: IncomeId
  , date :: Day
  , amount :: Int
  } deriving (Show, Generic)

instance FromJSON EditIncome