module Model.View.LoggedIn.Account ( Account , initAccount ) where import Model.Payers exposing (..) type alias Account = { payers : Payers , income : Maybe Int , visibleDetail : Bool } initAccount : Payers -> Maybe Int -> Account initAccount payers income = { payers = payers , income = income , visibleDetail = False }