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

import List

import Model.Payment exposing (Payments)

type alias Model =
  { payments : Maybe Payments
  , forbiddenAccess : Bool
  }

initialModel : Model
initialModel =
  { payments = Nothing
  , forbiddenAccess = False
  }