Skip to content

Instantly share code, notes, and snippets.

@Willamin
Created January 2, 2020 15:59
Show Gist options
  • Save Willamin/30b9472bac88d03d5971825e132f9968 to your computer and use it in GitHub Desktop.
Save Willamin/30b9472bac88d03d5971825e132f9968 to your computer and use it in GitHub Desktop.
class User {
lists: Array(List)
}
class List {
tasks: Array(Task)
name: String
}
class Task {
name: String
description: String
currrent_state: State
}
enum State {
incomplete
complete
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment