blob: 490321ba32c0aa03d4736cd427596e7b1df38835 (
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.Payer exposing (Payers)
import Model.User exposing (Users, UserId)
type alias Init =
{ users : Users
, me : UserId
, payments : Payments
, monthlyPayments : Payments
, paymentsCount : Int
, payers : Payers
}
|