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

import           Common.Model (Category, Income, Payment, PaymentCategory, User)

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