aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/Action/MonthlyAction.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Model/Action/MonthlyAction.elm')
-rw-r--r--src/client/elm/Model/Action/MonthlyAction.elm10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/elm/Model/Action/MonthlyAction.elm b/src/client/elm/Model/Action/MonthlyAction.elm
new file mode 100644
index 0000000..d985ccc
--- /dev/null
+++ b/src/client/elm/Model/Action/MonthlyAction.elm
@@ -0,0 +1,10 @@
+module Model.Action.MonthlyAction
+ ( MonthlyAction(..)
+ ) where
+
+import Model.Payment exposing (Payment, PaymentId)
+
+type MonthlyAction =
+ ToggleDetail
+ | AddPayment Payment
+ | DeletePayment PaymentId