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