see https://www.meetup.com/Valley-Software-Developers/events/237195432/
Last active
February 24, 2017 18:21
-
-
Save knowthen/387164751d76a3d096780799c923a3dd to your computer and use it in GitHub Desktop.
Valley Software Developers | Functional Programming Elm Meetup
type alias Model =
{ nextId : Int
, devices : List Device
, page : Page
, name : String
, ip : String
, deviceType : DeviceType
, editId : Maybe Int
}
type alias Device =
{ id : Int
, name : String
, ip : String
, deviceType : DeviceType
, status : DeviceStatus
}
type Page
= Home
| Edit
type DeviceType
= Ceiling
| Floor
type DeviceStatus
= On
| Pending
| Off
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment