aboutsummaryrefslogtreecommitdiff
path: root/server/src/Model/CreateIncome.hs
blob: 82451d24ecf9dd46d7a501b431938a5c099b4c83 (plain)
1
2
3
4
5
6
7
8
9
10
module Model.CreateIncome
  ( CreateIncome(..)
  ) where

import           Data.Time.Calendar (Day)

data CreateIncome = CreateIncome
  { _createIncome_amount :: Int
  , _createIncome_date   :: Day
  } deriving (Show)