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 }