From bb316286b0859b5648c61f44c88399f4c1aad9cd Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 2 Jan 2016 19:07:19 +0100 Subject: Use start-app for elm --- src/client/elm/Model/Communication.elm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/client/elm/Model/Communication.elm (limited to 'src/client/elm/Model/Communication.elm') diff --git a/src/client/elm/Model/Communication.elm b/src/client/elm/Model/Communication.elm new file mode 100644 index 0000000..dc4d412 --- /dev/null +++ b/src/client/elm/Model/Communication.elm @@ -0,0 +1,18 @@ +module Model.Communication + ( Communication(..) + ) where + +import Time exposing (Time) + +import Model.User exposing (UserId) +import Model.Payment exposing (..) + +type Communication = + NoCommunication + | SignIn String + | AddPayment String Int + | AddMonthlyPayment String Int + | SetIncome Time Int + | DeletePayment Payment Int + | DeleteMonthlyPayment PaymentId + | SignOut -- cgit v1.2.3