aboutsummaryrefslogtreecommitdiff
path: root/client/src/View/Income/Init.hs
blob: 4f3ef9936f470eafc35e49fbec00a037128a5750 (plain)
1
2
3
4
5
6
7
8
9
10
11
module View.Income.Init
  ( Init(..)
  ) where

import           Common.Model (Income, Payment, User)

data Init = Init
  { _init_users    :: [User]
  , _init_incomes  :: [Income]
  , _init_payments :: [Payment]
  } deriving (Show)