module LoggedIn.Msg exposing ( Msg(..) ) import Date exposing (Date) import Model.Payment exposing (Payment, PaymentId, Frequency) import Model.Income exposing (IncomeId) import LoggedIn.Home.Msg as HomeMsg import LoggedIn.Income.Msg as IncomeMsg type Msg = NoOp | HomeMsg HomeMsg.Msg | IncomeMsg IncomeMsg.Msg | AddPayment String String Frequency | ValidateAddPayment PaymentId String Int Frequency | DeletePayment PaymentId | ValidateDeletePayment PaymentId | AddIncome Date Int | ValidateAddIncome IncomeId Date Int | DeleteIncome IncomeId | ValidateDeleteIncome IncomeId