blob: feddbea6a2a4146a3f712cf2ef8a2b8c8fbc04ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module Model.Action.AccountAction
( AccountAction(..)
) where
import Time exposing (Time)
import Model.User exposing (UserId)
type AccountAction =
ToggleDetail
| UpdatePayer UserId Time Int
| ToggleIncomeEdition
| UpdateIncomeEdition String
| UpdateEditionError String
| UpdateIncome Time Int
|