blob: a7ec7a5b7dd106ab9a9ab6fb80985e7152876ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module Model.Communication
( Communication(..)
) where
import Time exposing (Time)
import Model.User exposing (UserId)
import Model.Payment exposing (..)
type Communication =
SignIn String
| AddPayment String Int
| AddMonthlyPayment String Int
| SetIncome Time Int
| DeletePayment Payment Int
| DeleteMonthlyPayment PaymentId
| SignOut
|