module Model.Communication ( Communication(..) ) where import Time exposing (Time) import Model.User exposing (UserId) import Model.Payment exposing (..) type Communication = SignIn String | SetIncome Time Int | AddPayment String Int PaymentFrequency | DeletePayment Payment PaymentFrequency | SignOut