Skip to content

Instantly share code, notes, and snippets.

@rogeriochaves
Last active January 24, 2016 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogeriochaves/185e4902d9bd5dcd4aba to your computer and use it in GitHub Desktop.
Save rogeriochaves/185e4902d9bd5dcd4aba to your computer and use it in GitHub Desktop.
type alias Model =
{ tasks : List Task
, field : String
, uid : Int
, visibility : String
}
type alias Task =
{ description : String
, completed : Bool
, editing : Bool
, id : Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment