aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/Home/AddPayment/Msg.elm
blob: 53e6e269cd66745be4729fd7dfc3cf7554502d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module LoggedIn.Home.AddPayment.Msg exposing
  ( Msg(..)
  )

import Model.Payment exposing (Frequency)

type Msg =
  NoOp
  | Init Frequency
  | UpdateName String
  | UpdateCost String
  | AddError (Maybe String) (Maybe String)
  | ToggleFrequency
  | WaitingServer