aboutsummaryrefslogtreecommitdiff
path: root/src/client/Model.elm
blob: 50d0c06431863beb9c99c171d06b9ccf5cd7325d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Model
  ( Model
  , initialModel
  ) where

import List

import Model.Payment exposing (Payments)

type alias Model =
  { payments : Payments
  }

initialModel : Model
initialModel =
  { payments = []
  }