aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/Init.elm
blob: d9dbc363e6295be41e0fdf3bb19c3d9aa7622fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Model.Init
  ( Init
  ) where

import Model.Payment exposing (Payments)
import Model.Income exposing (Incomes)
import Model.User exposing (Users, UserId)

type alias Init =
  { users : Users
  , me : UserId
  , payments : Payments
  , monthlyPayments : Payments
  , paymentsCount : Int
  , incomes : Incomes
  }