aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/Init.elm
blob: 7fccf0063ccabc001bb1694ac7df4074837c7900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
  , incomes : Incomes
  }