module Model.Init ( Init ) where import Model.Payment exposing (Payments) import Model.Payer exposing (Payers) import Model.User exposing (Users, UserId) type alias Init = { users : Users , me : UserId , payments : Payments , monthlyPayments : Payments , paymentsCount : Int , payers : Payers }